We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaac743 commit b81771cCopy full SHA for b81771c
.github/workflows/review.yml
@@ -0,0 +1,23 @@
1
+name: KeployAI Code Review
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
7
+permissions:
8
+ contents: read
9
+ pull-requests: write
10
11
+jobs:
12
+ ai-review:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout Repository
16
+ uses: actions/checkout@v4
17
+ with:
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
23
+ github-token: ${{ secrets.GH_SECRET }}
.github/workflows/test.yml
0 commit comments