We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9ef4db commit 16d8cdfCopy full SHA for 16d8cdf
1 file changed
.github/workflows/code-standards.yml
@@ -69,8 +69,8 @@ jobs:
69
- name: Run PHP CS Fixer
70
run: |
71
# set environment variables in script
72
- export RULES=$(echo $'${{ inputs.rules }} ${{ inputs.add-rules }}'|tr -d '\n\t\r '|jq -s '.[0] * .[1]' -crM)
73
- export EXCLUDE_PATTERNS=$(echo $'${{ inputs.exclude-patterns }}'|tr -d '\n\t\r ')
+ export RULES=$(echo ${{ inputs.rules }} ${{ inputs.add-rules }}|tr -d '\n\t\r '|jq -s '.[0] * .[1]' -crM)
+ export EXCLUDE_PATTERNS=$(echo ${{ inputs.exclude-patterns }}|tr -d '\n\t\r ')
74
75
# use config path only if EXCLUDE_PATTERN is empty
76
CMD_PATH=$([ "$EXCLUDE_PATTERNS" = "" ] && echo "$CONFIG_PATH" || echo "")
0 commit comments