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