2023-03-22 21:16:13 +00:00
|
|
|
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
|
2023-04-22 15:24:08 +00:00
|
|
|
uses: freeedcom/ai-codereviewer@main
|
2023-03-22 21:16:13 +00:00
|
|
|
with:
|
2023-03-22 22:40:18 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-03-22 21:16:13 +00:00
|
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
2023-12-02 21:02:38 +00:00
|
|
|
OPENAI_API_MODEL: "gpt-4-1106-preview"
|
2023-03-22 21:16:13 +00:00
|
|
|
exclude: "yarn.lock,dist/**"
|