[FE] 방 카드 컴포넌트, 방 카드 리스트 컴포넌트(#42, #43) #152
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: ashsty, jcoding-play, hjk0761, youngsu5582, 00kang, pp449, chlwlstlf | |
assignees: ${{ github.event.pull_request.user.login }} | |
includeLabels: ALL | |
- name: Backend Label | |
uses: wow-actions/auto-assign@v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
reviewers: ashsty, jcoding-play, hjk0761, youngsu5582 | |
assignees: ${{ github.event.pull_request.user.login }} | |
includeLabels: BE | |
- name: Frontend Label | |
uses: wow-actions/auto-assign@v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
reviewers: 00kang, pp449, chlwlstlf | |
assignees: ${{ github.event.pull_request.user.login }} | |
includeLabels: FE |