File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 99 schedule :
1010 # Check for updates to GitHub Actions every week
1111 interval : " weekly"
12+
1213 - package-ecosystem : " npm"
1314 directory : " /"
1415 versioning-strategy : auto
@@ -18,3 +19,4 @@ updates:
1819 ignore :
1920 - dependency-name : " *"
2021 update-types : ["version-update:semver-patch"]
22+
Original file line number Diff line number Diff line change 1+ ---
2+ name : " On PR Lint"
3+ on :
4+ pull_request :
5+ branches :
6+ - master
7+
8+ jobs :
9+ check_dependabot :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Checkout source code
13+ uses : actions/checkout@v4
14+
15+ - name : Check Changes
16+ id : changed-env
17+ uses : tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
18+ with :
19+ files : |
20+ .github/dependabot.yml
21+
22+ - if : |
23+ steps.changed-env.outputs.any_modified == 'true'
24+ run: |
25+ npx -y @bugron/validate-dependabot-yaml@latest
26+
27+ lint_cupcake :
28+ runs-on : ubuntu-latest
29+ steps :
30+ - name : Checkout source code
31+ uses : actions/checkout@v4
32+
33+ - name : Lint Code Base
34+ uses : oxsecurity/megalinter/flavors/cupcake@v8.5.0
You can’t perform that action at this time.
0 commit comments