fix: 키워드 페이징 조회를 단건 조회로 수정 #629
Workflow file for this run
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: Assign Reviewers by Label | |
| on: | |
| pull_request: | |
| types: [opened, labeled, unlabeled] | |
| jobs: | |
| assign: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check if Team Business | |
| if: contains(toJson(github.event.pull_request.labels), 'Team Business') | |
| uses: kentaro-m/auto-assign-action@v2.0.0 | |
| with: | |
| configuration-path: .github/auto_assign_team_business.yml | |
| - name: Check if Team Campus | |
| if: contains(toJson(github.event.pull_request.labels), 'Team Campus') | |
| uses: kentaro-m/auto-assign-action@v2.0.0 | |
| with: | |
| configuration-path: .github/auto_assign_team_campus.yml | |
| - name: Check if Team User | |
| if: contains(toJson(github.event.pull_request.labels), 'Team User') | |
| uses: kentaro-m/auto-assign-action@v2.0.0 | |
| with: | |
| configuration-path: .github/auto_assign_team_user.yml |