feat(github,dotfiles): add CI to check PR title scope against changed files #293
ci.yml
on: pull_request
ci-req-check
7s
yaml-lint
17s
shell-lint
13s
action-lint
10s
ansible-lint
27s
all-status-check
0s
Annotations
10 errors and 13 warnings
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2145:error:84:86: Argument mixes string and array. Use * or separate argument [shellcheck]
Raw Output:
e:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2145:error:84:86: Argument mixes string and array. Use * or separate argument [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2199:error:64:7: Arrays implicitly concatenate in [[ ]]. Use a loop (or explicit * instead of @) [shellcheck]
Raw Output:
e:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2199:error:64:7: Arrays implicitly concatenate in [[ ]]. Use a loop (or explicit * instead of @) [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2145:error:62:47: Argument mixes string and array. Use * or separate argument [shellcheck]
Raw Output:
e:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2145:error:62:47: Argument mixes string and array. Use * or separate argument [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2199:error:51:13: Arrays implicitly concatenate in [[ ]]. Use a loop (or explicit * instead of @) [shellcheck]
Raw Output:
e:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2199:error:51:13: Arrays implicitly concatenate in [[ ]]. Use a loop (or explicit * instead of @) [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2002:style:28:13: Useless cat. Consider 'cmd < file | ..' or 'cmd file | ..' instead [shellcheck]
Raw Output:
e:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2002:style:28:13: Useless cat. Consider 'cmd < file | ..' or 'cmd file | ..' instead [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2145:error:21:18: Argument mixes string and array. Use * or separate argument [shellcheck]
Raw Output:
e:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2145:error:21:18: Argument mixes string and array. Use * or separate argument [shellcheck]
|
|
action-lint
reviewdog: Too many results (annotations) in diff.
You may miss some annotations due to GitHub limitation for annotation created by logging command.
Please check GitHub Actions log console to see all results.
Limitation:
- 10 warning annotations and 10 error annotations per step
- 50 annotations per job (sum of annotations from all the steps)
- 50 annotations per run (separate from the job annotations, these annotations aren't created by users)
Source: https://github.com/orgs/community/discussions/26680#discussioncomment-3252835
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L23
[actionlint] reported by reviewdog 🐶
"github.head_ref" is potentially untrusted. avoid using it directly in inline scripts. instead, pass it through an environment variable. see https://docs.github.com/en/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions for more details [expression]
Raw Output:
e:.github/workflows/check_pr_scope.yml:23:86: "github.head_ref" is potentially untrusted. avoid using it directly in inline scripts. instead, pass it through an environment variable. see https://docs.github.com/en/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions for more details [expression]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L23
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2129:style:2:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]
Raw Output:
e:.github/workflows/check_pr_scope.yml:23:9: shellcheck reported issue in this script: SC2129:style:2:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L13
[actionlint] reported by reviewdog 🐶
the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw Output:
e:.github/workflows/check_pr_scope.yml:13:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2076:warning:64:30: Remove quotes from right-hand side of =~ to match as a regex rather than literally [shellcheck]
Raw Output:
w:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2076:warning:64:30: Remove quotes from right-hand side of =~ to match as a regex rather than literally [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2076:warning:51:42: Remove quotes from right-hand side of =~ to match as a regex rather than literally [shellcheck]
Raw Output:
w:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2076:warning:51:42: Remove quotes from right-hand side of =~ to match as a regex rather than literally [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:18:40: Double quote to prevent globbing and word splitting [shellcheck]
Raw Output:
i:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2086:info:18:40: Double quote to prevent globbing and word splitting [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L31
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2207:warning:12:12: Prefer mapfile or read -a to split command output (or quote to avoid splitting) [shellcheck]
Raw Output:
w:.github/workflows/check_pr_scope.yml:31:9: shellcheck reported issue in this script: SC2207:warning:12:12: Prefer mapfile or read -a to split command output (or quote to avoid splitting) [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L23
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:4:15: Double quote to prevent globbing and word splitting [shellcheck]
Raw Output:
i:.github/workflows/check_pr_scope.yml:23:9: shellcheck reported issue in this script: SC2086:info:4:15: Double quote to prevent globbing and word splitting [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L23
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:3:18: Double quote to prevent globbing and word splitting [shellcheck]
Raw Output:
i:.github/workflows/check_pr_scope.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:18: Double quote to prevent globbing and word splitting [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L23
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck]
Raw Output:
i:.github/workflows/check_pr_scope.yml:23:9: shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L19
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:1:69: Double quote to prevent globbing and word splitting [shellcheck]
Raw Output:
i:.github/workflows/check_pr_scope.yml:19:9: shellcheck reported issue in this script: SC2086:info:1:69: Double quote to prevent globbing and word splitting [shellcheck]
|
|
action-lint:
.github/workflows/check_pr_scope.yml#L19
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:1:43: Double quote to prevent globbing and word splitting [shellcheck]
Raw Output:
i:.github/workflows/check_pr_scope.yml:19:9: shellcheck reported issue in this script: SC2086:info:1:43: Double quote to prevent globbing and word splitting [shellcheck]
|
|
action-lint
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|
|
shell-lint
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|
|
shell-lint
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|
|
yaml-lint
Input 'fail_on_error' has been deprecated with message: Deprecated, use `fail_level` instead.
|