fix(ci): use Commit App token for release finalize commit#490
Merged
c-vigo merged 1 commit intorelease/0.3.2from Apr 7, 2026
Merged
fix(ci): use Commit App token for release finalize commit#490c-vigo merged 1 commit intorelease/0.3.2from
c-vigo merged 1 commit intorelease/0.3.2from
Conversation
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.
Description
The release finalize job used the Release App token for
vig-os/commit-action, but branch protection / rulesets treat that app differently than the Commit App. The workflow now generates a dedicated token fromCOMMIT_APP_ID/COMMIT_APP_PRIVATE_KEY(same pattern asprepare-release.yml) and passes it tocommit-actionasGH_TOKEN.Type of Change
feat-- New featurefix-- Bug fixdocs-- Documentation onlychore-- Maintenance task (deps, config, etc.)refactor-- Code restructuring (no behavior change)test-- Adding or updating testsci-- CI/CD pipeline changesbuild-- Build system or dependency changesrevert-- Reverts a previous commitstyle-- Code style (formatting, whitespace)Modifiers
!) -- This change breaks backward compatibilityChanges Made
.github/workflows/release.yml— AddGenerate Commit App Tokenstep in the finalize job; wirecommit-actionGH_TOKENtosteps.commit-app-token.outputs.tokeninstead of the Release App token.CHANGELOG.md— Document the fix under Unreleased / Fixed.assets/workspace/.devcontainer/CHANGELOG.md— Same changelog entry (mirrored).Changelog Entry
Fixed
COMMIT_APP_ID) for thecommit-actionstep in thefinalizejob ofrelease.yml, matching the pattern used byprepare-release.ymland other workflows; the previous Release App token lacked ruleset bypassTesting
just test)Manual Testing Details
N/A — workflow-only change; verify on the next release run after merge.
Checklist
docs/templates/, then runjust docs)CHANGELOG.mdin the[Unreleased]section (and pasted the entry above)Additional Notes
Ensure repository secrets
COMMIT_APP_IDandCOMMIT_APP_PRIVATE_KEYare configured for the Commit App with the permissions needed to push torelease/*per your ruleset design.Refs: #487