Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3da9364

Browse files
authoredApr 21, 2025··
Update linter-full.yml
1 parent 2331868 commit 3da9364

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed
 

‎.github/workflows/linter-full.yml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,37 @@
1-
---
2-
name: Lint Code Base
1+
name: Lint Full
32

43
on:
54
workflow_dispatch:
65
push:
76
branches: main
87

9-
permissions: { }
8+
9+
permissions: {}
1010

1111
jobs:
1212
build:
13-
name: Lint Code Base
13+
name: Lint
1414
runs-on: ubuntu-latest
15+
1516
permissions:
1617
contents: read
1718
packages: read
18-
# To report github actions status checks
19+
# To report GitHub Actions status checks
1920
statuses: write
21+
2022
steps:
2123
- name: Checkout Code
2224
uses: actions/checkout@v4
2325
with:
24-
# Full git history is needed to get a proper list of changed
25-
# files within `super-linter`
26+
# super-linter needs the full git history to get the
27+
# list of files that changed across commits
2628
fetch-depth: 0
27-
- name: Lint Code Base
28-
uses: super-linter/super-linter@v7
29+
30+
- name: Super-linter
31+
uses: super-linter/super-linter@v7.3.0
2932
env:
30-
# validate full codebase
33+
# To report GitHub Actions status checks
34+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
DEFAULT_BRANCH: main
3136
VALIDATE_ALL_CODEBASE: true
3237
VALIDATE_BASH: true
33-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.