We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd603d1 commit ad625beCopy full SHA for ad625be
1 file changed
.github/workflows/xmllinter.yml
@@ -57,9 +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 ${{ steps.read-json.outputs.config }}
61
- echo ${{ env.current_file }}
62
- echo ${{ vars.current_file }}
+ echo "${{ steps.read-json.outputs.config }}"
+ echo "${{ env.current_file }}"
+ 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