We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
push
1 parent ea822a9 commit 6f7d593Copy full SHA for 6f7d593
.github/workflows/differential-shellcheck.yml
@@ -2,6 +2,7 @@
2
3
name: Differential ShellCheck
4
on:
5
+ push:
6
pull_request:
7
branches: [ main ]
8
@@ -22,7 +23,15 @@ jobs:
22
23
with:
24
fetch-depth: 0
25
- - name: Differential ShellCheck
26
+ - id: ShellCheck
27
+ name: Differential ShellCheck
28
uses: redhat-plumbers-in-action/differential-shellcheck@v4
29
30
token: ${{ secrets.GITHUB_TOKEN }}
31
+
32
+ - if: ${{ always() }}
33
+ name: Upload artifact with ShellCheck defects in SARIF format
34
+ uses: actions/upload-artifact@v3
35
+ with:
36
+ name: Differential ShellCheck SARIF
37
+ path: ${{ steps.ShellCheck.outputs.sarif }}
0 commit comments