We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ee140d commit c215d44Copy full SHA for c215d44
.github/workflows/xmllinter.yml
@@ -63,8 +63,8 @@ jobs:
63
- name: Lint XML
64
id: linter
65
run: |
66
- $(echo "${{ steps.find-xml.outputs.filelist }}") | jq -c '.[]' | while read -r i; do
67
- ignore=$("jq --null-input '[\"${i}\"] - ${{ steps.read-ignore.outputs.ignore }}'")
+ $("${{ steps.find-xml.outputs.filelist }}") | jq -c '.[]' | while read -r i; do
+ ignore=$(jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}')
68
echo "$ignore"
69
70
if [ "$ignore" = "[]" ]; then
0 commit comments