mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-04-20 09:36:47 +00:00
initial commit
This commit is contained in:
commit
b6f3653286
12 changed files with 20132 additions and 0 deletions
19
.github/workflows/code_review.yml
vendored
Normal file
19
.github/workflows/code_review.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
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/open-ai-codereviewer@test-this
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GH_KEY }}
|
||||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||
exclude: "yarn.lock,dist/**"
|
Loading…
Add table
Add a link
Reference in a new issue