We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7a3055 commit 6026026Copy full SHA for 6026026
1 file changed
.github/workflows/ci.yaml
@@ -481,7 +481,8 @@ jobs:
481
- name: Run yamllint
482
run: |
483
set -x
484
- yamllint "${CHANGED_FILES}"
+ # shellcheck disable=SC2086
485
+ yamllint ${CHANGED_FILES}
486
487
json-lint:
488
if: needs.changes.outputs.json == 'true'
@@ -502,7 +503,9 @@ jobs:
502
503
run: echo '::add-matcher::.github/problem-matchers/jsonlint.json'
504
505
- name: Run jsonlint on JSON files
- run: jsonlint --continue "${CHANGED_FILES}"
506
+ run: |
507
508
+ jsonlint --continue ${CHANGED_FILES}
509
510
cff-validation:
511
if: needs.changes.outputs.cff == 'true'
0 commit comments