[ 1월 2주차 ] #102
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
# workflow 의 이름 | |
name: issues labeler | |
# 트리거될 이벤트 설정 | |
on: | |
issue_comment: | |
types: [created] | |
# 트리거되었을 때 실행될 job 작성 | |
jobs: | |
issue_commented: | |
if: github.event.comment.user.login == 'Ryan-Dia'||'SWARVY'||'Bori-github'||'limvik'||'ujin2021'||'DAHLIACHOI'||'wl2258'||'hyejj19' | |
name: apply-label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add Label | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const userLabelMap = { | |
'Ryan-Dia': '철원', | |
'SWARVY': '현호', | |
'Bori-github': '보리', | |
'limvik': '성국', | |
'ujin2021': '유진', | |
'DAHLIACHOI': '예지', | |
'wl2258': '지민', | |
'hyejj19': '혜정' | |
}; | |
const userLogin = context.payload.comment.user.login; | |
const labelToAdd = userLabelMap[userLogin]; | |
github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: [`${labelToAdd}`] | |
}); |