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