Skip to content

Commit 219138a

Browse files
committed
bump
1 parent bc48fa3 commit 219138a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/xmllinter.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,12 @@ jobs:
5353
echo "filelist=${filelist}" >> $GITHUB_OUTPUT
5454
5555
- name: Lint XML
56+
id: linter
5657
run: |
5758
echo '${{ steps.find-xml.outputs.filelist }}' | jq -c '.[]' | while read i; do
58-
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"]
5962
echo "Skipping ${i}"
6063
else
6164
echo "Linting ${i}"

0 commit comments

Comments
 (0)