We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a484a24 commit 23cf4c2Copy full SHA for 23cf4c2
.forgejo/workflows/yamllint.yml
@@ -21,8 +21,9 @@ jobs:
21
22
- name: Lint .yml files
23
run: |
24
- lint_output=$(find docker -name "*.yml" yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} \;)
+ lint_output=$(find docker -name "*.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} \;)
25
26
+ # Check if there are any issues
27
if [[ -n "$lint_output" ]]; then
28
echo "$lint_output"
29
exit 1
0 commit comments