Skip to content

Commit

Permalink
feat: code-review-gpt (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattzcarey authored Jul 10, 2023
1 parent 85570d2 commit 80d53b9
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/code-review-gpt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Code Review GPT

on:
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
environment: preview

steps:
- uses: actions/checkout@v2
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: Run code review script
run: npx code-review-gpt --ci
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 }}

0 comments on commit 80d53b9

Please sign in to comment.