release: 2026.09.01 배포 #843
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: "PR Label & Assign Reviewers" | |
| on: | |
| pull_request: | |
| types: [opened, labeled, ready_for_review] | |
| jobs: | |
| label_and_assign: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # 1. 이슈 라벨을 PR에 복사 | |
| - name: Sync Issue Labels to PR | |
| uses: michalvankodev/copy-issue-labels@v1.3.0 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| # 2. 브랜치 접두사에 따른 자동 라벨링 | |
| - name: Branch Prefix Labeler | |
| uses: TimonVS/pr-labeler-action@v4 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # 3. Team Members에서 랜덤 2명 리뷰어 할당 (Draft 제외) | |
| - name: Assign Random Reviewers | |
| if: github.event.pull_request.draft == false | |
| uses: kentaro-m/auto-assign-action@v2.0.0 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| configuration-path: .github/auto_assign.yml |