[Feat] QFEED-43 채팅리스트, 채팅방 페이지 마크업 #35
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 | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths-ignore: | |
- '**/*.stories.tsx' | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: AI Code Review | |
uses: se0kcess/ai-code-reviewer@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
MODEL: 'gpt-3.5-turbo' | |
LANGUAGE: Korean | |
MAX_FILES: 5 | |
REVIEW_COMMENT_PREFIX: '🤖 코드 리뷰 의견' | |
PROMPT: "You are a senior frontend developer. Please review the code in Korean language only. Focus on the following aspects:\n\n1. Code quality and maintainability\n2. React and TypeScript best practices\n3. Performance improvements\n4. Clear suggestions for improvements\n5. Positive feedback\n\nPlease structure your review in Korean as follows:\n\n## 전반적인 검토 의견\n\n## 구체적인 개선 제안\n\n## 잘된 점" |