fix(actions): retire stale Noema token-lifetime quality runs - #1726
Merged
seonghobae merged 7 commits intoSep 2, 2026
Conversation
|
Warning Review limit reachedNext included review available in 46 minutes. View limit detailsLimit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. Review configuration: ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Team Run ID: 📒 Files selected for processing (3)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
seonghobae
enabled auto-merge (squash)
September 2, 2026 11:21
seonghobae
deleted the
fix/noema-token-lifetime-stale-run-contract-20260902
branch
September 2, 2026 11:29
This was referenced Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Root cause
A fresh synchronize on #1717 demonstrated that every predecessor PR workflow lineage except Noema Reviewer Token Lifetime CI retired its old head. Predecessor run
33621482031remained queued after current-head run33622618082was created. The owner workflow.github/workflows/noema-token-lifetime-quality-ci.ymlhad no concurrency contract, so each push admitted another obsolete deterministic quality run into the saturated Actions fleet.RED → repair
181889f260d3c0f5a048a52f58e470bfb9090b64adds an executable contract requiring repository + PR stable concurrency, no head SHA, andcancel-in-progress: true; protected main fails it because the workflow has noconcurrency:block.abb7b9936bab8cc5f1628263fe615c6a5c09bc42adds the native PR-stable group usinggithub.event.pull_request.base.repo.full_name+ PR number andcancel-in-progress: true.3751cd3b82e48f0131689ab18fbea16ff741f37drecords the exact predecessor/current run evidence and preserved security/quality invariants.This is deterministic quality CI, not a long semantic reviewer, so native cancellation is appropriate and strictly lower privilege than a custom
actions: writecancellation path. No model/provider/routing, Noema verdict semantics, protected requirements, test scope, hash-locked dependencies, runner image, or permissions are weakened.Verification
Fresh exact-head Checks/reviews/threads are required. A subsequent synchronize must prove that the predecessor Noema token-lifetime run is retired while the sole current-head authoritative lineage remains.
docs/product-technical-gap-baseline.mdis intentionally not concurrently rewritten here because the repository already has a dedicated baseline single-writer lane; this incident and repair are recorded in doctoring for that lane to integrate without competing file ownership.