Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
| issues: read |
There was a problem hiding this comment.
Reviewer workflow lacks write permission to comment
The claude-code-review job asks the action to leave feedback via gh pr comment, but the job permissions restrict the GITHUB_TOKEN to pull-requests: read (and issues read-only). GitHub CLI cannot post PR comments with a read-only token, so the action will fail to publish the review even though it runs. Grant pull-requests: write (and issues if needed) so the bot can comment on PRs.
Useful? React with 👍 / 👎.
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
| issues: read | ||
| id-token: write |
There was a problem hiding this comment.
Event responder cannot reply due to read-only token
The general claude workflow is triggered by issue comments/reviews mentioning @claude, but the job sets pull-requests and issues permissions to read. The action relies on gh commands to respond, which require write access to post comments; with these permissions the bot will be unable to reply, rendering the automation inert. Provide pull-requests: write and issues: write so responses succeed.
Useful? React with 👍 / 👎.
No description provided.