Skip to content

Commit

Permalink
feat: Adds new review workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
o-leolleo committed Mar 20, 2024
1 parent 30ef78e commit 00a032b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pr-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Code Review GPT

on:
pull_request:
branches: [main]

jobs:
run_code_review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Code Review GPT
uses: mattzcarey/[email protected]
with:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MODEL: 'gpt-3.5-turbo'
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 00a032b

Please sign in to comment.