[BE] fix: 학교의 축제 목록을 조회할 때 last 여부가 반대로 반환되는 버그를 수정 (#883) #1413
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: Assign Reviewer By Label | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- labeled | |
- unlabeled | |
jobs: | |
assign-reviewer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: All Label | |
uses: wow-actions/auto-assign@v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
reviewers: BGuga, seokjin8678, xxeol2, carsago, SeongHoonC, EmilyCh0, re4rk | |
assignees: ${{ github.event.pull_request.user.login }} | |
includeLabels: ALL | |
excludeLabels: WIP | |
- name: Android Label | |
uses: wow-actions/auto-assign@v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
reviewers: SeongHoonC, EmilyCh0, re4rk | |
assignees: ${{ github.event.pull_request.user.login }} | |
includeLabels: AN | |
excludeLabels: WIP | |
- name: Backend Label | |
uses: wow-actions/auto-assign@v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
reviewers: BGuga, seokjin8678, xxeol2, carsago | |
assignees: ${{ github.event.pull_request.user.login }} | |
includeLabels: BE | |
excludeLabels: WIP |