We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 219138a commit 30b0af3Copy full SHA for 30b0af3
1 file changed
.github/workflows/xmllinter.yml
@@ -58,7 +58,10 @@ jobs:
58
echo '${{ steps.find-xml.outputs.filelist }}' | jq -c '.[]' | while read i; do
59
echo "current_file=${i}" >> $GITHUB_OUTPUT
60
61
- if [ ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, steps.linter.outputs.current_file) }} -eq "true"]
+ if [ ${{ contains(
62
+ fromJSON(steps.read-json.outputs.config).ignore,
63
+ steps.linter.outputs.current_file) }} -eq "true"
64
+ ]; then
65
echo "Skipping ${i}"
66
else
67
echo "Linting ${i}"
0 commit comments