propagate error from check_issue
Some checks failed
/ checks (pull_request) Failing after 38s

This commit is contained in:
Jacob Lifshay 2026-03-16 22:27:33 -07:00
parent 46872eabb8
commit 96813854cc
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ

View file

@ -263,7 +263,10 @@ function check_progress()
fi
done
if [[ "$nlnet_id" != "YYYY-MM-ID" ]]; then
check_issue "$issue_number2" "$nlnet_id" "$subtask_title" "$subtask_body" || diag "note:" -line_index="$subtask_line_index" "issue is linked from here"
check_issue "$issue_number2" "$nlnet_id" "$subtask_title" "$subtask_body" || {
diag "note:" -line_index="$subtask_line_index" "issue is linked from here"
any_errors=1
}
fi
done
(( subtasks_total == task_amount )) || \