Skip to content

Commit 79868cd

Browse files
Update workflow.yml
1 parent b81771c commit 79868cd

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

examples/workflow.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
name: Smart AI Code Review
1+
name: KeployAI Code Review
22

33
on:
44
pull_request:
5-
types: [opened, reopened, synchronize]
5+
types: [opened, synchronize, reopened]
66

77
permissions:
88
contents: read
99
pull-requests: write
1010

1111
jobs:
1212
ai-review:
13-
name: AI Code Review
1413
runs-on: ubuntu-latest
1514
steps:
16-
- uses: your-username/code-review-agent@v1
15+
- name: Checkout Repository
16+
uses: actions/checkout@v4
1717
with:
18-
github-token: ${{ secrets.GH_FINE_GRAINED_PAT }}
19-
model: 'gpt-4.1-nano'
20-
ollama-model: 'qwen2:7b'
21-
max-tokens: 6700
22-
temperature: 0.1
23-
ignore-patterns: '*.md,node_modules/**,dist/**'
24-
include-patterns: '*.js,*.ts,*.go,*.py'
18+
fetch-depth: 0 # Required to get the full git history for diffing
19+
20+
- name: Run Smart AI Code Review
21+
uses: euclidstellar/code-review-agent@v1
22+
with:
23+
github-token: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)