[FEAT] 현재 진행 중인 모임을 가장 상단에 위치하도록 수정 #352
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: Issue PR Labeler | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
jobs: | |
labeling: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Run Issue PR Labeler | |
uses: hoho4190/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
disable-bot: true | |
config-file-name: labeler-config.yaml | |
add_assignees: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-ecosystem/action-add-assignees@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
assignees: ${{ github.actor }} |