diff --git a/.github/workflows/github-actions-lint.yml b/.github/workflows/github-actions-lint.yml index 83e6458c..bfeac093 100644 --- a/.github/workflows/github-actions-lint.yml +++ b/.github/workflows/github-actions-lint.yml @@ -18,7 +18,7 @@ jobs: - uses: reviewdog/action-actionlint@v1 if: steps.changed-files.outputs.any_changed == 'true' with: - fail_on_error: true + fail_level: any filter_mode: nofilter # added (default), diff_context, file, nofilter github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-pr-check diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml index d767f22a..0f812349 100644 --- a/.github/workflows/rubocop.yml +++ b/.github/workflows/rubocop.yml @@ -34,7 +34,7 @@ jobs: - uses: reviewdog/action-rubocop@v2 if: steps.changed-files.outputs.any_changed == 'true' with: - fail_on_error: true + fail_level: any filter_mode: nofilter # added (default), diff_context, file, nofilter github_token: ${{ secrets.GITHUB_TOKEN }} skip_install: true diff --git a/.github/workflows/yaml-lint.yml b/.github/workflows/yaml-lint.yml index 30930e84..58326526 100644 --- a/.github/workflows/yaml-lint.yml +++ b/.github/workflows/yaml-lint.yml @@ -18,7 +18,7 @@ jobs: - uses: reviewdog/action-yamllint@v1 if: steps.changed-files.outputs.any_changed == 'true' with: - fail_on_error: true + fail_level: any filter_mode: nofilter # added (default), diff_context, file, nofilter github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-pr-check