-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (28 loc) · 1.03 KB
/
ai-code-review.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
jobs:
ai-code-review:
runs-on: ubuntu-latest
permissions:
pull-requests: write # Allow write access to PRs
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up environment variables
run: |
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
echo "GITHUB_REPO=${{ github.repository }}" >> $GITHUB_ENV
echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> $GITHUB_ENV
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y jq
- name: Grant execute permission to the script
run: chmod +x ./scripts/run_code_reviewer.sh
- name: Run AI Code Reviewer
run: ./scripts/run_code_reviewer.sh
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPO: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}