We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f7a2a1 commit d414a01Copy full SHA for d414a01
phpcs-action.bash
@@ -97,11 +97,21 @@ fi
97
98
if [ -n "$ACTION_IGNORE_WARNINGS_ON_EXIT" ]
99
then
100
- command_string+=(--runtime-set ignore_warnings_on_exit "$ACTION_IGNORE_WARNINGS_ON_EXIT")
+ case "$ACTION_IGNORE_WARNINGS_ON_EXIT" in
101
+ 'true'|'1') normalised_value=1 ;;
102
+ 'false'|'0') normalised_value=0 ;;
103
+ *) normalised_value=0 ;;
104
+ esac
105
+ command_string+=(--runtime-set ignore_warnings_on_exit "$normalised_value")
106
fi
107
108
if [ -n "$ACTION_IGNORE_ERRORS_ON_EXIT" ]
109
110
+ case "$ACTION_IGNORE_ERRORS_ON_EXIT" in
111
112
113
114
115
command_string+=(--runtime-set ignore_errors_on_exit "$ACTION_IGNORE_ERRORS_ON_EXIT")
116
117
0 commit comments