File tree Expand file tree Collapse file tree 2 files changed +43
-1
lines changed Expand file tree Collapse file tree 2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : shellcheck
3+
4+ run-name : Shellcheck
5+
6+ on :
7+ pull_request :
8+ branches :
9+ - " main"
10+ paths :
11+ - " **/*.sh"
12+
13+ concurrency :
14+ group : ${{ github.ref }}-${{ github.workflow }}
15+ cancel-in-progress : true
16+
17+ jobs :
18+ skip_duplicate_actions :
19+ name : Skip Duplicate Actions
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : fkirc/skip-duplicate-actions@master
23+ with :
24+ github_token : ${{ secrets.GITHUB_TOKEN }}
25+ cancel_others : true
26+ concurrent_skipping : never
27+
28+ shellcheck :
29+ name : Shellcheck
30+ runs-on : ubuntu-latest
31+ steps :
32+ - name : Checkout code
33+ uses : actions/checkout@v4
34+ with :
35+ fetch-depth : 0
36+
37+ - name : Call Dagger Function
38+ uses : dagger/dagger-for-github@v6
39+ with :
40+ args : check --source=. stdout
41+ module : github.com/softwaredevelop/daggerverse/shellcheck@main
42+ verb : call
43+ version : " latest"
Original file line number Diff line number Diff line change 4545 ACTIONS_RUNNER_DEBUG : true
4646 DEFAULT_BRANCH : main
4747 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
48- VALIDATE_BASH : true
4948 VALIDATE_EDITORCONFIG : true
5049 VALIDATE_GITHUB_ACTIONS : true
5150 VALIDATE_YAML : true
You can’t perform that action at this time.
0 commit comments