[llvm] [CI] Gracefully Fail when Job Completion Timestamp is None (PR #168457)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 17 15:52:54 PST 2025
================
@@ -370,6 +370,13 @@ def github_get_metrics(
started_at = job.started_at
completed_at = job.completed_at
+ if completed_at is None:
+ logging.info(
+ "Workflow {} is marked completed but has a job without a "
----------------
boomanaiden154 wrote:
Was meant to point to an ID through an fstring. Fixed now.
https://github.com/llvm/llvm-project/pull/168457
More information about the llvm-commits
mailing list