Skip to content

Commit

Permalink
Test failure
Browse files Browse the repository at this point in the history
```
.github/workflows/github-actions-lint.yml:21:11: input "fail_level" is not defined in action "reviewdog/action-actionlint@v1". available inputs are "actionlint_flags", "fail_on_error", "filter_mode", "github_token", "level", "reporter", "reviewdog_flags", "tool_name" [action]
.github/workflows/rubocop.yml:39:11: input "fail_level" is not defined in action "reviewdog/action-rubocop@v2". available inputs are "fail_on_error", "filter_mode", "github_token", "level", "only_changed", "reporter", "reviewdog_flags", "rubocop_extensions", "rubocop_flags", "rubocop_version", "skip_install", "tool_name", "use_bundler", "workdir" [action]
reviewdog: found at least one issue with severity greater than or equal to the given level: any
```

```
https://github.com/activeadmin/arbre/actions/runs/12491803020/job/34858258167?pr=647
```
  • Loading branch information
tagliala committed Dec 25, 2024
1 parent 7b8e104 commit c259d26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: reviewdog/action-actionlint@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
fail_level: any
:fail_level: any

Check failure on line 21 in .github/workflows/github-actions-lint.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/github-actions-lint.yml#L21

input ":fail_level" is not defined in action "reviewdog/action-actionlint@v1". available inputs are "actionlint_flags", "fail_on_error", "filter_mode", "github_token", "level", "reporter", "reviewdog_flags", "tool_name" [action]
Raw output
.github/workflows/github-actions-lint.yml:21:11: input ":fail_level" is not defined in action "reviewdog/action-actionlint@v1". available inputs are "actionlint_flags", "fail_on_error", "filter_mode", "github_token", "level", "reporter", "reviewdog_flags", "tool_name" [action]
filter_mode: nofilter # added (default), diff_context, file, nofilter
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-check
2 changes: 1 addition & 1 deletion .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: reviewdog/action-yamllint@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
fail_level: any
:fail_level: any
filter_mode: nofilter # added (default), diff_context, file, nofilter
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-check

0 comments on commit c259d26

Please sign in to comment.