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