Skip to content

Commit 4d20dc3

Browse files
author
Kostas Demiris
committed
added the AI PR bot file
1 parent 4cbac7f commit 4d20dc3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ai_pr_bot.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: AI PR Bot
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, ready_for_review, synchronize]
6+
7+
jobs:
8+
ai-pr-bot:
9+
runs-on: ubuntu-latest
10+
#
11+
if: github.event.repository.private == false # NOTICE: only run on public repositories
12+
#
13+
steps:
14+
- uses: jacsamell/github-pr-bot@v1
15+
with:
16+
anthropic_api_key: ${{ secrets.CLAUDE_API_KEY }}
17+
github_token: ${{ secrets.GITHUB_TOKEN }}
18+
auto_review: true
19+
auto_describe: true
20+
auto_improve: false
21+
enable_auto_approval: false
22+
model: 'anthropic/claude-sonnet-4-20250514'
23+
max_model_tokens: '100000'
24+
require_trigger: false

0 commit comments

Comments
 (0)