-
Notifications
You must be signed in to change notification settings - Fork 50
Add Claude Code GitHub Workflow #340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
88fe218
Add Claude PR Assistant workflow
abrookins c9e9194
Update claude.yml
abrookins ccbf5f1
Update claude.yml
abrookins 02ace1e
Update claude.yml
abrookins 2b2387c
Update claude.yml
abrookins 74daac6
Update claude.yml
abrookins 29f2f87
Allow access to make
abrookins File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Claude Code | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_review_comment: | ||
types: [created] | ||
issues: | ||
types: [opened, assigned] | ||
pull_request_review: | ||
types: [submitted] | ||
|
||
jobs: | ||
claude: | ||
if: | | ||
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || | ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || | ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) || | ||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude'))) | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: read | ||
issues: read | ||
id-token: write | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Run Claude Code | ||
id: claude | ||
uses: anthropics/claude-code-action@beta | ||
with: | ||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | ||
|
||
# Define which tools Claude can use | ||
allowed_tools: | | ||
Bash(git status) | ||
Bash(git log) | ||
Bash(git show) | ||
Bash(git blame) | ||
Bash(git reflog) | ||
Bash(git stash list) | ||
Bash(git ls-files) | ||
Bash(git branch) | ||
Bash(git tag) | ||
Bash(git diff) | ||
Bash(make:*) | ||
Bash(pytest:*) | ||
Bash(cd:*) | ||
Bash(ls:*) | ||
Bash(make) | ||
Bash(make:*) | ||
View | ||
GlobTool | ||
GrepTool | ||
BatchTool | ||
|
||
# Your Anthropic API key (stored as a GitHub secret) | ||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} |
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.
Uh oh!
There was an error while loading. Please reload this page.