Conversation
There was a problem hiding this comment.
Pull request overview
Adds a new GitHub Actions workflow to run the Anthropic Claude Assistant action in response to GitHub issue/PR review activity.
Changes:
- Introduces
.github/workflows/claude.ymlworkflow triggered on issue comments, PR review comments, issue events, and submitted PR reviews. - Configures the workflow to run
anthropics/claude-code-action@v1usingsecrets.CLAUDE_CODE_OAUTH_TOKEN.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
.github/workflows/claude.yml
Outdated
| on: | ||
| issue_comment: | ||
| types: [created] | ||
| pull_request_review_comment: | ||
| types: [created] | ||
| issues: | ||
| types: [opened, assigned] | ||
| pull_request_review: | ||
| types: [submitted] |
.github/workflows/claude.yml
Outdated
| on: | ||
| issue_comment: | ||
| types: [created] | ||
| pull_request_review_comment: | ||
| types: [created] | ||
| issues: | ||
| types: [opened, assigned] | ||
| pull_request_review: | ||
| types: [submitted] |
| claude-response: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: anthropics/claude-code-action@v1 |
wangye805
left a comment
There was a problem hiding this comment.
Not quite familiar with the claude workflow but looks like this PR does not add any project specific context/prompt/skills. Is this just a starting PR to enable claude review so that later we can add context/prompt/skills? Also, how can we use this newly added claude.yml?
By the way, please make some simple description or either remove this section
|
I think it would be better to perform AI code reviews on explicit demand via a comment (or potentially even commit message). This will help keep the conversation clean and streamlined, allowing for simpler review. |

Description
Add github action to use Claude to review PRs.
Type of change