Skip to content

Commit

Permalink
ci/cd: 코드리뷰 추가
Browse files Browse the repository at this point in the history
- 코드리뷰 워크플로우를 위한 YAML 파일 추가
- 코드리뷰 권한 설정 및 작업 유형 지정
- 오픈된, 재개된, 동기화된 풀 리퀘스트에 대한 이벤트 설정
- ChatGPT 코드리뷰 작업 설정 및 실행 환경 지정
- 코드 차이점 확인을 위한 ChatGPT 코드리뷰 실행
- GITHUB_TOKEN 및 OPENAI_API_KEY 환경 변수 설정
- 한국어 언어 및 코드리뷰 프롬프트 지정
  • Loading branch information
virtue14 committed Jul 3, 2024
1 parent d739850 commit cd83420
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/codereview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 코드리뷰

permissions:
contents: read
pull-requests: write

on:
pull_request:
types: [opened, reopened, synchronize]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: ChatGPT 코드리뷰
uses: anc95/ChatGPT-CodeReview@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
LANGUAGE: Korean
PROMPT: 다음 코드 차이점에 혼동이나 불규칙이 있는지 확인해주세요(코드리뷰)

0 comments on commit cd83420

Please sign in to comment.