From 434a4ee19f00f85efb95437d55f806c15b449906 Mon Sep 17 00:00:00 2001 From: badcuban <108198679+badcuban@users.noreply.github.com> Date: Thu, 27 Aug 2026 12:29:28 -0400 Subject: [PATCH] fix(release): preflight waits for the renamed CI jobs The release gate polls CI checks by name. The browser suite moved to its own job in 1eb60184 and the main job was renamed, so preflight waited 15 minutes for a check that no longer exists and failed the nightly. --- scripts/verify-release-ci.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/verify-release-ci.ts b/scripts/verify-release-ci.ts index 0de483dae..75a905f94 100644 --- a/scripts/verify-release-ci.ts +++ b/scripts/verify-release-ci.ts @@ -27,7 +27,8 @@ type CheckRunEvaluation = { }; const DEFAULT_REQUIRED_CHECKS = [ - "Format, Lint, Typecheck, Test, Browser Test, Build", + "Format, Lint, Typecheck, Test, Build", + "Browser Test", "Release Smoke", ]; const DEFAULT_WAIT_TIMEOUT_SECONDS = 15 * 60;