[codex-security] cut npm releases only after public CI succeeds - #235
[codex-security] cut npm releases only after public CI succeeds#235soyeon-oai wants to merge 4 commits into
Conversation
There was a problem hiding this comment.
💡 Codex Review
codex-security/.github/workflows/node-release-cut.yml
Lines 83 to 86 in 3b1144b
When a version-bump commit fails CI and a subsequent fix commit succeeds without changing package.json, the successful run sees the same version in its immediate parent and exits here before checking npm. The fixed, CI-validated commit is therefore never tagged or published, and further unrelated commits also skip it; only another version bump or manual dispatch can recover the release. Confirm that the current version is already published before treating an unchanged manifest as a no-op.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Summary
Testing