fix(ci): use RELEASE_PAT for release-please to trigger CI on PRs#601
Merged
OneStepAt4time merged 2 commits intomainfrom Mar 30, 2026
Merged
fix(ci): use RELEASE_PAT for release-please to trigger CI on PRs#601OneStepAt4time merged 2 commits intomainfrom
OneStepAt4time merged 2 commits intomainfrom
Conversation
Owner
Author
👁️ Argus Code Reviewfix(ci): use RELEASE_PAT for release-please to trigger CI on PRs Verdict: ✅ ApprovedWhat it doesSwitches release-please from Checklist
Ready to merge after rebase. |
GITHUB_TOKEN PRs don't trigger workflows (GitHub anti-loop protection). Switching to RELEASE_PAT so release-please PRs run CI checks automatically.
752c505 to
13e74ae
Compare
OneStepAt4time
added a commit
that referenced
this pull request
Mar 31, 2026
## [2.3.0](v2.2.6...v2.3.0) (2026-03-31) ### Features * expose pendingQuestion in get_status and REST endpoint (#600) ### Bug Fixes * ci: use RELEASE_PAT for release-please to trigger CI on PRs (#601)
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.
Problem
Release-please PRs (like #598) never trigger CI workflows because they are created with
GITHUB_TOKEN. GitHub intentionally preventsGITHUB_TOKEN-created PRs from triggering workflows to avoid infinite loops.This means release PRs sit with no status checks, blocking merge.
Fix
Switch
release-please-actionfromsecrets.GITHUB_TOKENtosecrets.RELEASE_PAT(already configured today).PRs created with a PAT trigger workflows normally.
One-line change