Conversation
sayan-oai
approved these changes
Apr 27, 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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Why
The
build-testworkflow stages a representativecodexnpm tarball by askingscripts/stage_npm_packages.pyto look up a pastrust-releaserun for a hardcoded release version. That started failing in CI because the representative version in.github/workflows/ci.ymlwas stale:0.115.0stage_npm_packages.pyresolves native artifacts by looking for arust-releaserun on therust-v<version>branchrust-v0.115.0, so the smoke test failed before it could stage the packageThis PR makes that smoke test depend on a known-good recent release run instead of an older branch lookup that is no longer reliable.
What Changed
.github/workflows/ci.ymlfrom0.115.0to0.125.0.WORKFLOW_URLpointing at a recent successfulrust-releaserun:https://github.com/openai/codex/actions/runs/24901475298.scripts/stage_npm_packages.pyvia--workflow-urlso the job can reuse the expected native artifacts directly instead of relying ongh run list --branch rust-v<version>to discover them.That keeps the npm staging smoke test representative while making it less sensitive to older release branch history disappearing from the GitHub Actions lookup path.
Verification
build-testand confirmed the failure came fromscripts/stage_npm_packages.pybeing unable to resolverust-v0.115.0.https://github.com/openai/codex/actions/runs/24901475298is a successfulrust-releaserun forrust-v0.125.0.