File tree Expand file tree Collapse file tree 3 files changed +58
-0
lines changed
Expand file tree Collapse file tree 3 files changed +58
-0
lines changed Original file line number Diff line number Diff line change 1+ github : [LouisBrunner]
Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : ' github-actions'
4+ directory : /
5+ schedule :
6+ interval : weekly
7+ groups :
8+ actions-deps :
9+ patterns :
10+ - ' *'
11+
12+ - package-ecosystem : npm
13+ directory : /
14+ schedule :
15+ interval : monthly
16+ groups :
17+ security-updates :
18+ applies-to : security-updates
19+ patterns :
20+ - ' *'
21+ major-updates :
22+ applies-to : version-updates
23+ update-types :
24+ - ' major'
25+ minor-updates :
26+ applies-to : version-updates
27+ update-types :
28+ - ' minor'
29+ - ' patch'
Original file line number Diff line number Diff line change 1+ name : Lint Github Actions
2+
3+ on :
4+ push :
5+ branches : [main]
6+ paths :
7+ - " .github/**"
8+ pull_request :
9+ paths :
10+ - " .github/**"
11+
12+ jobs :
13+ lint :
14+ name : Lint YAML files
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+ - uses : ibiqlik/action-yamllint@v3
19+ with :
20+ file_or_dir : .github
21+ config_data : |
22+ extends: default
23+ rules:
24+ line-length:
25+ max: 120
26+ level: warning
27+ document-start: disable
28+ truthy: disable
You can’t perform that action at this time.
0 commit comments