fix(release): accept advisory runtime gaps (#115140)

This commit is contained in:
Peter Steinberger
2026-07-28 06:42:10 -04:00
committed by GitHub
parent 1d047ac4f1
commit 7cf14c12c8
2 changed files with 94 additions and 3 deletions
+4 -2
View File
@@ -119,10 +119,12 @@ function requireRuntimePairScenario(scenario, index) {
}
if (scenario.status === "pass") {
const hasTwoPassingCells = openclaw.status === "pass" && codex.status === "pass";
const hasAdvisoryCodexGap =
parity.drift === "structural" && openclaw.status === "pass" && isExplicitCodexGap(codex);
if (
parity.drift === "failure-mode" ||
openclaw.status !== "pass" ||
codex.status !== "pass" ||
(!hasTwoPassingCells && !hasAdvisoryCodexGap) ||
!isPassableCell(openclaw) ||
!isPassableCell(codex)
) {