Skip to content

Commit 9ea5bae

Browse files
feat: add Claude Code PR Review workflow (#1415)
### 🔄 Changes - A new GitHub Actions workflow, `claude-code-review.yml`, was added. - This workflow uses the `auth0/auth0-ai-pr-analyzer-gh-action` action to perform code reviews. - The workflow is triggered by pull request reviews and issue comments. ### 💥 Impact - This change will automate code reviews using Claude. - This will improve code quality and reduce review time. - There should be no performance impact. ### 📋 Checklist - [ ] Code follows the project's coding standards - [ ] Tests have been added/updated - [ ] Documentation has been updated - [ ] All tests are passing
1 parent 06bc782 commit 9ea5bae

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Claude Code PR Review
2+
3+
on:
4+
issue_comment:
5+
types: [ created ]
6+
pull_request_review_comment:
7+
types: [ created ]
8+
pull_request_review:
9+
types: [ submitted ]
10+
11+
jobs:
12+
claude-review:
13+
uses: auth0/auth0-ai-pr-analyzer-gh-action/.github/workflows/claude-code-review.yml@main

0 commit comments

Comments
 (0)