We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d2427 commit 08387f5Copy full SHA for 08387f5
.github/workflows/code-review.yml
@@ -9,12 +9,23 @@ on:
9
types: [opened, synchronize]
10
11
jobs:
12
- test:
+ review:
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: anc95/ChatGPT-CodeReview@main
16
- env:
+# - uses: anc95/ChatGPT-CodeReview@main
+# env:
17
+# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+# OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
19
+# LANGUAGE: Korean
20
+# MODEL: gpt-3.5-turbo
21
+
22
+ - name: Checkout Repo
23
+ uses: actions/checkout@v3
24
25
+ - name: AI Code Reviewer
26
+ uses: sapiens2000/ai-code-reviewer@main
27
+ with:
28
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
- LANGUAGE: Korean
- MODEL: gpt-3.5-turbo
30
+ OPENAI_API_MODEL: "gpt-4" #
31
+ exclude: "**/*.json, **/*.md"
0 commit comments