From 528481ee267e9323c3feef6a47b902b5a7255be7 Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 3 Jul 2026 16:18:14 +0000 Subject: [PATCH] fix: show stored follower stage timings --- scripts/src/cicd.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/src/cicd.ts b/scripts/src/cicd.ts index 4fca2434..50f6d022 100644 --- a/scripts/src/cicd.ts +++ b/scripts/src/cicd.ts @@ -2148,7 +2148,7 @@ function storedFollowerTimingsForStatus( observedSha: string | null, ): FollowerState["timings"] { const total = totalTimingFromStored(storedTimings, phase, null, observedSha); - const sourceCommit = total?.sourceCommit ?? null; + const sourceCommit = total?.sourceCommit ?? stringOrNull(storedTimings?.sourceCommit) ?? null; return { budgetSeconds: follower.budgets.endToEndSeconds, totalSeconds: total?.seconds ?? null,