선호 api 연결완료 #92
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code Review # workflow 이름 | |
| permissions: | |
| contents: read # 읽기 권한 | |
| pull-requests: write # PR에 코멘트 추가 권한 | |
| on: | |
| pull_request: | |
| types: [ opened, reopened, synchronize ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: anc95/ChatGPT-CodeReview@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| LANGUAGE: Korean #한국어 | |
| MODEL: gpt-4o-mini | |
| max_tokens: 10000 #이번 리뷰에서 사용할 토큰의 최대 개수 | |
| prompt: 협업 중입니다. pr 1개에 대해 코드리뷰 1개만 간단하게 달아주세요. |