feat(remote-control): RemoteControl 컴포넌트와 ArrowUp 아이콘 컴포넌트 정의 및 사용 #9
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 GPT | |
on: | |
pull_request: | |
branches: [dev] | |
permissions: | |
pull-requests: write | |
contents: read | |
jobs: | |
run_code_review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Code Review GPT | |
uses: mattzcarey/[email protected] | |
with: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
MODEL: 'gpt-3.5-turbo' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Discord Webhook Action | |
uses: tsickert/[email protected] | |
with: | |
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
content: '코드 리뷰 완료하였습니다~~!' |