initial commit

This commit is contained in:
Ville Saukkonen 2023-03-22 23:16:13 +02:00
commit b6f3653286
12 changed files with 20132 additions and 0 deletions

19
.github/workflows/code_review.yml vendored Normal file
View 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/**"