ci: pass PAT to release-please so its PRs trigger workflows#20
Merged
Conversation
Without an explicit token, release-please uses the default GITHUB_TOKEN. PRs created with GITHUB_TOKEN do not trigger other workflows, so the required commitlint check never runs on release PRs and they stay blocked by branch protection. Use RELEASE_PLEASE_TOKEN (a PAT) so opened PRs trigger commitlint.
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.
Summary
RELEASE_PLEASE_TOKEN(PAT) togoogleapis/release-please-action@v4instead of relying on the defaultGITHUB_TOKEN.Why
PRs created with the default
GITHUB_TOKENdo not trigger other workflows (GitHub docs). Branch protection onmainrequires thecommitlintcheck, butcommitlint.ymlruns onpull_requestevents — which never fire for release-please PRs. The result: every release PR (e.g. #19) staysmergeable_state: blockedforever.Using a PAT makes release-please open PRs as a real user, so
pull_request: openedfires andcommitlintruns.Test plan
commitlint(proves human-authored PRs are unaffected)commitlintalready running automatically