ci: improve release workflow and CI validation#1291
Merged
Conversation
✅ Deploy Preview for doist-typist ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
doistbot
reviewed
Apr 8, 2026
Member
doistbot
left a comment
There was a problem hiding this comment.
This PR updates the release and CI workflows to align with recent Reactist improvements, notably transitioning to a GitHub App token for semantic-release operations. These changes nicely improve the maintainability and reliability of the deployment pipeline by accommodating the new branch rulesets. A minor adjustment was noted regarding workflow permissions, suggesting a reduction of the default token privileges to better enforce the principle of least privilege now that the App token handles write operations.
semantic-release now uses the GitHub App token for all write operations, so the workflow's default GITHUB_TOKEN only needs id-token (OIDC provenance) and packages (GitHub Packages publish).
1 task
|
🎉 This PR is included in version 10.0.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
1 task
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.
Overview
Aligns Typist's release and CI workflows with the improvements recently made in Reactist (ref1, ref2), while preserving Typist-specific
nextbranch support.The main change is switching from a user PAT (
GH_REPO_TOKEN) to a GitHub App token (Doist Release Bot) for the release workflow. This ensures semantic-release can push release commits past branch rulesets onmain, which was migrated from legacy branch protection rules to rulesets as part of this work.PR Checklist
Test plan
The release workflow will be validated on the next push to
mainafter merge. The CI validation changes can be verified by checking that this PR's own CI passes.