create ai_reviewer workflow #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Review GPT | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
branches: [master] | |
permissions: | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install code-review-gpt | |
run: npm install code-review-gpt | |
- name: Configure code review script | |
run: npx code-review-gpt configure --setupTarget=github | |
- name: Run code review script | |
run: npx code-review-gpt review --model=gpt4-o | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
GITHUB_SHA: ${{ github.sha }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |