We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aef55e commit 575267fCopy full SHA for 575267f
1 file changed
.github/workflows/xmllinter.yml
@@ -57,11 +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 }}"
63
64
- if [ "${{ contains(fromJSON(steps.read-json.outputs.config).ignore, `echo current_file`) }}" = "true" ]; then
+ echo jq --null-input '${{ steps.find-xml.outputs.filelist }} - ${{ fromJSON(steps.read-json.outputs.config).ignore }}'
+ if [ "${{ contains(fromJSON(steps.read-json.outputs.config).ignore, './phpcs.xml') }}" = "true" ]; then
65
echo "Skipping ${i}"
66
else
67
echo "Linting ${i}"
0 commit comments