Feat/#137 MultiQueue를 이용하여 Controller에서 오는 로그 요청의 부하 감소 #124
Workflow file for this run
This file contains 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 | |
permissions: | |
contents: read | |
pull-requests: write | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: | |
- dev | |
jobs: | |
run_code_review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Code Review GPT | |
uses: LuizyHub/code-review-gpt@main | |
with: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
MODEL: 'gpt-4o-mini' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |