ci: grant check-approvals pull-requests:write so it can comment on PRs#6093
Merged
Conversation
The check-approvals job posts a Review Required comment on the PR when approvals are unmet. That comment goes through the issues-comments endpoint, but for a pull request resource the GITHUB_TOKEN needs pull-requests: write -- issues: write does not cover PRs. The job only granted pull-requests: read + issues: write, so the POST returned 403 'Resource not accessible by integration' and crashed the check on every Claude PR at open time (e.g. #6087). Verified on the same PR: assign-netcode-reviewer (pull-requests: write) edited the PR fine, while check-approvals (issues: write) 403'd -- confirming the scope, not the token/actor, is the issue. Brings this job in line with the other claude/* workflows (claude-pr-assistant, claude-ci-fix, claude-jira), which all already grant pull-requests: write. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
JohnN193
pushed a commit
to JohnN193/rdk
that referenced
this pull request
Jun 9, 2026
viamrobotics#6093) Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
EvanDorsky
pushed a commit
to EvanDorsky/rdk
that referenced
this pull request
Jun 12, 2026
viamrobotics#6093) Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
The check-approvals job posts a Review Required comment on the PR when approvals are unmet. That comment goes through the issues-comments endpoint, but for a pull request resource the GITHUB_TOKEN needs pull-requests: write -- issues: write does not cover PRs. The job only granted pull-requests: read + issues: write, so the POST returned 403 'Resource not accessible by integration' and crashed the check on every Claude PR at open time (e.g. #6087).
Verified on the same PR: assign-netcode-reviewer (pull-requests: write) edited the PR fine, while check-approvals (issues: write) 403'd -- confirming the scope, not the token/actor, is the issue. Brings this job in line with the other claude/* workflows (claude-pr-assistant, claude-ci-fix, claude-jira), which all already grant pull-requests: write.