File tree Expand file tree Collapse file tree 4 files changed +39
-1
lines changed Expand file tree Collapse file tree 4 files changed +39
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ version : 2
3
+ updates :
4
+ # Maintain dependencies for GitHub Actions
5
+ # These would open PR, these PR would be tested with the CI
6
+ # They will have to be merged manually by a maintainer
7
+ - package-ecosystem : github-actions
8
+ directory : /
9
+ open-pull-requests-limit : 10 # avoid spam, if no one reacts
10
+ schedule :
11
+ interval : weekly
12
+ time : ' 11:00'
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : CI
3
+ on : # yamllint disable-line rule:truthy
4
+ push :
5
+ jobs :
6
+ yaml-lint :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v3
10
+ - name : yaml-lint
11
+ uses : ibiqlik/action-yamllint@v3
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : spell checking
3
+ on : # yamllint disable-line rule:truthy
4
+ push :
5
+
6
+ jobs :
7
+ typos :
8
+ name : Spell Check with Typos
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout Actions Repository
12
+ uses : actions/checkout@v4
13
+ - name : typos-action
14
+ uses : crate-ci/typos@v1.21.0
Original file line number Diff line number Diff line change 1
1
---
2
2
# empty file to force using the default settings
3
- # otherwise golangci-lint looks for .golangci.yaml files in folders above current one
3
+ # otherwise golangci-lint looks for .golangci.yaml files
4
+ # in parent folders
4
5
# this may cause issues
You can’t perform that action at this time.
0 commit comments