We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f8109 commit d2a0548Copy full SHA for d2a0548
.github/workflows/xmllinter.yml
@@ -55,9 +55,10 @@ jobs:
55
- name: Lint XML
56
id: linter
57
run: |
58
+ echo '${{ toJSON(fromJSON(steps.read-json.outputs.config).ignore) }}' | jq -c '.[]'
59
+
60
echo '${{ steps.find-xml.outputs.filelist }}' | jq -c '.[]' | while read i; do
61
echo "current_file=${i}" >> "$GITHUB_ENV"
- echo '${{ toJSON(fromJSON(steps.read-json.outputs.config).ignore) }}' | jq -c '.[]'
62
echo jq --null-input '${{ steps.find-xml.outputs.filelist }} - ${{ toJSON(fromJSON(steps.read-json.outputs.config).ignore) }}'
63
if [ "${{ contains(fromJSON(steps.read-json.outputs.config).ignore, './phpcs.xml') }}" = "true" ]; then
64
echo "Skipping ${i}"
0 commit comments