Skip to content

Commit 9338a6e

Browse files
committedDec 3, 2024
Update reviewdog actions with fail_level=any
1 parent 280d666 commit 9338a6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎.github/workflows/github-actions-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: reviewdog/action-actionlint@v1
1919
if: steps.changed-files.outputs.any_changed == 'true'
2020
with:
21-
fail_on_error: true
21+
fail_level: any
2222
filter_mode: nofilter # added (default), diff_context, file, nofilter
2323
github_token: ${{ secrets.GITHUB_TOKEN }}
2424
reporter: github-pr-check

‎.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: reviewdog/action-rubocop@v2
3737
if: steps.changed-files.outputs.any_changed == 'true'
3838
with:
39-
fail_on_error: true
39+
fail_level: any
4040
filter_mode: nofilter # added (default), diff_context, file, nofilter
4141
github_token: ${{ secrets.GITHUB_TOKEN }}
4242
skip_install: true

‎.github/workflows/yaml-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: reviewdog/action-yamllint@v1
1919
if: steps.changed-files.outputs.any_changed == 'true'
2020
with:
21-
fail_on_error: true
21+
fail_level: any
2222
filter_mode: nofilter # added (default), diff_context, file, nofilter
2323
github_token: ${{ secrets.GITHUB_TOKEN }}
2424
reporter: github-pr-check

0 commit comments

Comments
 (0)