Skip to content

Commit e3589f2

Browse files
committed
Merge branch 'linter-github-action' of https://github.com/netgroup/rose-srv6-tutorial into linter-github-action
2 parents 5f51acb + 6536d8b commit e3589f2

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/shell_linter.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,14 @@ jobs:
2020
- uses: actions/checkout@v2
2121

2222
- name: Shell Linter
23-
uses: azohra/[email protected]
23+
uses: reviewdog/action-shellcheck@v1
24+
with:
25+
github_token: ${{ secrets.github_token }}
26+
reporter: github-pr-review # Change reporter.
27+
path: "." # Optional.
28+
pattern: "*.sh" # Optional.
29+
exclude: "./.git/*" # Optional.
30+
fail_on_error: true
31+
level: "info"
32+
shellcheck_flags: --severity=style --external-sources
33+
filter_mode: "nofilter"

0 commit comments

Comments
 (0)