This repository was archived by the owner on Feb 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +79
-3
lines changed Expand file tree Collapse file tree 6 files changed +79
-3
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 @@ -24,7 +24,7 @@ markComment: >
2424 for your contributions.
2525
2626unmarkComment : >
27- [STALE_CLR] This issue has been removed from the stale queue. Please ensure activity to keep it openin the future.
27+ [STALE_CLR] This issue has been removed from the stale queue. Please ensure activity to keep it opening the future.
2828
2929closeComment : >
3030 [STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions.
Original file line number Diff line number Diff line change 44 check-bats-version :
55 runs-on : ubuntu-latest
66 steps :
7- - uses : actions/checkout@v2
8- - uses : actions/setup-node@v2
7+ - uses : actions/checkout@v3
8+ - uses : actions/setup-node@v3
99 with :
1010 node-version : ' 14'
1111 - 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