ai-codereviewer/.github/workflows/code_review.yml
2023-07-16 08:46:21 +05:30

20 lines
573 B
YAML

name: Code Review with OpenAI
on:
pull_request:
types:
- opened
- synchronize
permissions: write-all
jobs:
code_review:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Code Review
uses: freeedcom/ai-codereviewer@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OPENAI_MODEL: 'gpt-3.5-turbo' ## change the model if according to your requirements
exclude: "yarn.lock,dist/**"