Enum 타입 유효성 검증 오류 해결 #45
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 from Claude | |
| on: | |
| pull_request: | |
| # dev에 pr 할때만 리뷰 | |
| branches: | |
| - develop | |
| types: [ opened, synchronize ] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install requests PyGithub | |
| - name: Run Code Review | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }} | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| run: python .github/scripts/code_review.py |