fix: skip CI waits without precheck job

This commit is contained in:
Nick Sweeting 2026-05-27 11:08:43 -07:00
parent 38f07949bc
commit 5d6df4b310
No known key found for this signature in database

View File

@ -262,6 +262,10 @@ wait_for_runs() {
'
)"
case "${precheck_state}" in
missing:*)
echo "Skipping test workflow without precheck job: ${workflow_name}"
break
;;
completed:success|completed:skipped)
break
;;