Skip to content

Commit aa37dd9

Browse files
authored
Chat-GPT를 이용한 코드리뷰 기능 추가 (#184)
* feat: chat-GPT를 이용한 코드리뷰 기능 추가 - Open API의 chat-GPT 3.5를 이용해서 PR에 자동으로 코드리뷰를 해주는 기능 사용 - github actions에 workflow script 작성 * refactor: gpt가 해준 코드리뷰 피드백 반영
1 parent 2f86d04 commit aa37dd9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CR - Code Review By Chat Gpt
2+
3+
permissions:
4+
contents: read
5+
pull-requests: write
6+
7+
on:
8+
pull_request:
9+
types: [opened, synchronize]
10+
11+
jobs:
12+
codeReviewByChatGpt:
13+
runs-on: ubuntu-latest
14+
steps:
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

0 commit comments

Comments
 (0)