Skip to content

Commit ba49599

Browse files
authored
Merge pull request #5 from waku-org/jazzz/claude
Add default Claude action
2 parents 79c1e7a + c91446e commit ba49599

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/claude-code.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Claude Code Review
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request:
7+
types: [opened, synchronize]
8+
9+
permissions:
10+
contents: read
11+
id-token: write
12+
13+
jobs:
14+
claude:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
- uses: anthropics/claude-code-action@beta
19+
with:
20+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
21+
experimental_allowed_domains: |
22+
.github.com
23+
.githubusercontent.com

CLAUDE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# CLAUDE.md
2+
Please review code for clarity, maintainability, and correctness. Suggest improvements without rewriting unless necessary.
3+
Avoid nitpicks unless they impact understanding.

0 commit comments

Comments
 (0)