From b68d243b6a3a0ff83cf2bbb77109bbf4ad61f47c Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 4 Jun 2026 23:45:01 +0200 Subject: [PATCH] fix: Add fail_level to reviewdog actions (#1177) --- .github/workflows/review.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index a945b55..9d3e573 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -32,6 +32,7 @@ jobs: uses: reviewdog/action-hadolint@v1 with: level: warning + fail_level: error reporter: github-pr-review hadolint_ignore: DL3008 DL3003 DL3006 DL3013 github_token: ${{ secrets.GITHUB_TOKEN }} @@ -55,6 +56,7 @@ jobs: if: false with: level: warning + fail_on_error: "true" shfmt_flags: "-i 2 -ci -bn" github_token: ${{ secrets.GITHUB_TOKEN }} - @@ -62,6 +64,7 @@ jobs: uses: reviewdog/action-shellcheck@v1 with: level: warning + fail_level: error reporter: github-pr-review - shellcheck_flags: -x -e SC2001 -e SC2034 -e SC2064 -e SC2317 -e SC2153 -e SC2028 + shellcheck_flags: -x -e SC2001 -e SC2034 -e SC2064 -e SC2317 -e SC2153 -e SC2028 github_token: ${{ secrets.GITHUB_TOKEN }}