We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88e78ec commit 0ae693bCopy full SHA for 0ae693b
.github/workflows/xmllinter.yml
@@ -57,12 +57,12 @@ jobs:
57
echo "${FILES}" >> $GITHUB_OUTPUT
58
echo "EOF" >> $GITHUB_OUTPUT
59
# iterate through the Bash array
60
- for item in "${FILES[@]}"; do
61
- echo "${item}"
62
- done
63
64
- name: Lint XML
65
run: |
+ for item in "${{ steps.find-xml.outputs.files }}"; do
+ echo "${item}"
+ done
66
#echo ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, 'bullshit') }}
67
#echo ${{ contains(fromJSON(steps.read-json.outputs.config).ignore, '/path/to/file') }}
68
#for fn in ${{ steps.find-xml.outputs.files }}; do
0 commit comments