We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee512da commit 60bff19Copy full SHA for 60bff19
.github/workflows/auto-merge-queue.yml
@@ -176,9 +176,9 @@ jobs:
176
177
echo " $job: $job_status"
178
179
- if [[ "$job_status" == "success" ]]; then
+ if [[ "$job_status" == "success" ]] || [[ "$job_status" == "SUCCESS" ]]; then
180
continue
181
- elif [[ "$job_status" == "failure" ]] || [[ "$job_status" == "cancelled" ]] || [[ "$job_status" == "timed_out" ]]; then
+ elif [[ "$job_status" == "failure" ]] || [[ "$job_status" == "FAILURE" ]] || [[ "$job_status" == "cancelled" ]] || [[ "$job_status" == "CANCELLED" ]] || [[ "$job_status" == "timed_out" ]] || [[ "$job_status" == "TIMED_OUT" ]]; then
182
any_failure=true
183
break
184
else
0 commit comments