File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,9 @@ runs:
111111 vendor/bin/phpcbf --extensions="${{ inputs.extensions }}" . --standard="${{ env.USE_STANDARD }}" --ignore="${{ inputs.ignore }}" || MORE_ISSUES=true
112112 : "${MORE_ISSUES:=false}"
113113 if [ "${MORE_ISSUES}" = "true" ]; then
114- echo "::warning title=Some phpcs issues remained::Manual fix necessary. Compare to the PHP Code Sniffer section above."
114+ #echo "::warning title=Some phpcs issues remained::Manual fix necessary. Compare to the PHP Code Sniffer section above."
115+ # todo investigate when this happens
116+ echo "::warning title=Non-zero code exit of phpcbf::Manual fix necessary?"
115117 fi
116118
117119 # restore composer.json before staging the changes
@@ -156,8 +158,8 @@ runs:
156158 # Set branch name as output
157159 echo "branch-name=$BRANCH_NAME" >> $GITHUB_OUTPUT
158160
159- # Stop with an error if some manual fixes are required on top of automatic fixes
160- if [ "${{ inputs.stop-on-manual-fix }}" = "true" ] && [ "${MORE_ISSUES}" = "true" ]; then
161- exit 1
162- fi
161+ ## Stop with an error if some manual fixes are required on top of automatic fixes
162+ # if [ "${{ inputs.stop-on-manual-fix }}" = "true" ] && [ "${MORE_ISSUES}" = "true" ]; then
163+ # exit 1
164+ # fi
163165 shell : bash
You can’t perform that action at this time.
0 commit comments