chore: record dev rollout for codex stdio

This commit is contained in:
Code Queue Review
2026-05-23 21:54:37 +00:00
parent e6d4bd5c72
commit 98f5698e99
7 changed files with 3146 additions and 1790 deletions
+1 -1
View File
@@ -1228,7 +1228,7 @@ function assertDevCdApplyReport(report, label) {
for (const field of ["id", "phase", "status", "command", "code", "startedAt", "finishedAt"]) {
assert.ok(Object.hasOwn(step, field), `${stepLabel} missing ${field}`);
}
assert.ok(["publishing", "applying"].includes(step.phase), `${stepLabel}.phase`);
assert.ok(["publishing", "applying", "verifying"].includes(step.phase), `${stepLabel}.phase`);
assert.ok(["pass", "blocked"].includes(step.status), `${stepLabel}.status`);
assertString(step.command, `${stepLabel}.command`);
}