We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e974209 commit e4036beCopy full SHA for e4036be
action.yml
@@ -126,7 +126,7 @@ runs:
126
if [ ${PHPCBF_EXIT_CODE} -ne 0 ]; then
127
echo "::notice title=phpcbf wasn't idle::Non-zero code exit of phpcbf = ${PHPCBF_EXIT_CODE} ... phpcbf wasn't idle"
128
129
- vendor/bin/phpcs --extensions="${{ inputs.extensions }}" . --standard="$use_standard" --ignore="${{ inputs.ignore }}" || MORE_ISSUES=true
+ vendor/bin/phpcs --extensions="${{ inputs.extensions }}" . --standard="${{ env.USE_STANDARD }}" --ignore="${{ inputs.ignore }}" || MORE_ISSUES=true
130
# because of `||`, the previous command always exit 0
131
if [ "${MORE_ISSUES}" = "true" ]; then
132
echo "::warning title=Some phpcs issues remained.::Some phpcs issues remained. Manual fix necessary."
0 commit comments