From a69181800fe2342501f6ff99aae43d97a067a311 Mon Sep 17 00:00:00 2001 From: Michel Abboud Date: Sat, 31 Jan 2026 19:41:28 +0000 Subject: [PATCH] fix: Add fail_level to reviewdog actions, use fail_on_error for shfmt Add fail_level: error to the 5 reviewdog actions that support it (misspell, hadolint, yamllint, actionlint, shellcheck). For shfmt, which hasn't added fail_level support yet, use fail_on_error: true. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index d8074e3..0f19a94 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -58,7 +58,7 @@ jobs: uses: reviewdog/action-shfmt@v1 with: level: warning - fail_level: error + fail_on_error: "true" shfmt_flags: "-i 2 -ci -bn" github_token: ${{ secrets.GITHUB_TOKEN }} -