This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree 6 files changed +109
-2
lines changed
6 files changed +109
-2
lines changed Original file line number Diff line number Diff line change
1
+ # See: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#about-the-dependabotyml-file
2
+ version : 2
3
+
4
+ updates :
5
+ # Configure check for outdated GitHub Actions actions in workflows.
6
+ # See: https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
7
+ - package-ecosystem : github-actions
8
+ directory : / # Check the repository's workflows under /.github/workflows/
9
+ schedule :
10
+ interval : daily
Original file line number Diff line number Diff line change
1
+ # Configuration for probot-stale - https://github.com/probot/stale
2
+
3
+ daysUntilStale : 60
4
+ daysUntilClose : 14
5
+ limitPerRun : 30
6
+ staleLabel : stale
7
+ exemptLabels :
8
+ - pinned
9
+ - security
10
+ - " to be implemented"
11
+ - " for reference"
12
+ - " move to PR"
13
+ - " enhancement"
14
+
15
+ only : issues
16
+ onlyLabels : []
17
+ exemptProjects : false
18
+ exemptMilestones : false
19
+ exemptAssignees : false
20
+
21
+ markComment : >
22
+ [STALE_SET] This issue has been automatically marked as stale because it has not had
23
+ recent activity. It will be closed in 14 days if no further activity occurs. Thank you
24
+ for your contributions.
25
+
26
+ unmarkComment : >
27
+ [STALE_CLR] This issue has been removed from the stale queue. Please ensure activity to keep it opening the future.
28
+
29
+ closeComment : >
30
+ [STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions.
31
+
Original file line number Diff line number Diff line change 4
4
check-bats-version :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v2
8
- - uses : actions/setup-node@v2
7
+ - uses : actions/checkout@v3
8
+ - uses : actions/setup-node@v3
9
9
with :
10
10
node-version : ' 14'
11
11
- run : npm install -g bats
Original file line number Diff line number Diff line change
1
+ name : Check Arduino
2
+
3
+ # See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
4
+ on :
5
+ push :
6
+ pull_request :
7
+ schedule :
8
+ # Run every Tuesday at 8 AM UTC to catch breakage caused by new rules added to Arduino Lint.
9
+ - cron : " 0 8 * * TUE"
10
+ workflow_dispatch :
11
+ repository_dispatch :
12
+
13
+ jobs :
14
+ lint :
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - name : Checkout repository
19
+ uses : actions/checkout@v3
20
+
21
+ - name : Arduino Lint
22
+ uses : arduino/arduino-lint-action@v1
23
+ with :
24
+ compliance : specification
25
+ library-manager : update
26
+ # Always use this setting for official repositories. Remove for 3rd party projects.
27
+ official : true
28
+ project-type : library
Original file line number Diff line number Diff line change
1
+ name : Report Size Deltas
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' */5 * * * *'
6
+
7
+ jobs :
8
+ report :
9
+ runs-on : ubuntu-latest
10
+
11
+ steps :
12
+ - name : Comment size deltas reports to PRs
13
+ uses : arduino/report-size-deltas@v1
14
+ with :
15
+ # The name of the workflow artifact created by the "Compile Examples" workflow
16
+ sketches-reports-source : sketches-reports
Original file line number Diff line number Diff line change
1
+ name : Spell Check
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ schedule :
7
+ # run every Tuesday at 3 AM UTC
8
+ - cron : " 0 3 * * 2"
9
+ workflow_dispatch :
10
+ repository_dispatch :
11
+
12
+ jobs :
13
+ spellcheck :
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@v3
19
+
20
+ # See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
21
+ - name : Spell check
22
+ uses : codespell-project/actions-codespell@master
You can’t perform that action at this time.
0 commit comments