Skip to content

Commit 08387f5

Browse files
committed
chore: gpt 모델 수정
1 parent b9d2427 commit 08387f5

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/workflows/code-review.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,23 @@ on:
99
types: [opened, synchronize]
1010

1111
jobs:
12-
test:
12+
review:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: anc95/ChatGPT-CodeReview@main
16-
env:
15+
# - uses: anc95/ChatGPT-CodeReview@main
16+
# 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:
1728
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1829
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
19-
LANGUAGE: Korean
20-
MODEL: gpt-3.5-turbo
30+
OPENAI_API_MODEL: "gpt-4" #
31+
exclude: "**/*.json, **/*.md"

0 commit comments

Comments
 (0)