We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc48fa3 commit 219138aCopy full SHA for 219138a
1 file changed
.github/workflows/xmllinter.yml
@@ -53,9 +53,12 @@ jobs:
53
echo "filelist=${filelist}" >> $GITHUB_OUTPUT
54
55
- name: Lint XML
56
+ id: linter
57
run: |
58
echo '${{ steps.find-xml.outputs.filelist }}' | jq -c '.[]' | while read i; do
- if [ ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, i) }} -eq "true"]
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"]
62
echo "Skipping ${i}"
63
else
64
echo "Linting ${i}"
0 commit comments