chore: pin dev auth proxy rollout

This commit is contained in:
Codex
2026-05-18 13:07:34 +00:00
parent 0c0c979a56
commit 60f991f826
11 changed files with 151 additions and 984 deletions
-7
View File
@@ -683,13 +683,6 @@ function resolveDeployDevManifest(desiredRef: string): DeployDevManifestSummary
};
}).filter((service) => service.id.length > 0 && service.commitId.length > 0);
if (services.length === 0) throw new Error(`origin/${desiredRef}:deploy.json has no environments.dev services with commitId`);
const codeQueueService = services.find((service) => service.id === "code-queue");
if (codeQueueService === undefined) {
throw new Error(`origin/${desiredRef}:deploy.json environments.dev.services must include code-queue for ci run-dev-e2e`);
}
if (!/^[0-9a-f]{40}$/u.test(codeQueueService.commitId)) {
throw new Error(`origin/${desiredRef}:deploy.json environments.dev.services code-queue commitId must be a full 40-character SHA`);
}
return {
deployCommit: deployCommitResult.stdout.trim(),
desiredRef,