Skip to content

Commit 4eca9aa

Browse files
emp3thyclaude
andcommitted
ci: add Claude BugBot PR review workflow
Mirrors the better-memory setup: rekpero/claude-bugbot-github-action runs on every pull_request opened/synchronize event, reviewing the diff and posting comments. Skips dependabot PRs. Requires repo secret CLAUDE_SETUP_TOKEN to be set before the bot can run. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 2e0b9a1 commit 4eca9aa

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/bugbot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Claude BugBot
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
11+
jobs:
12+
bugbot:
13+
name: Claude BugBot review
14+
runs-on: ubuntu-latest
15+
if: github.actor != 'dependabot[bot]'
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Run Claude BugBot
21+
uses: rekpero/claude-bugbot-github-action@main
22+
with:
23+
claude-setup-token: ${{ secrets.CLAUDE_SETUP_TOKEN }}

0 commit comments

Comments
 (0)