feat: 소셜 로그인 시 임시 회원가입 할 때 랜덤 생성 닉네임 넣어주는 기능 구현 #77
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: Add 'merged' label to closed PR | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
set_merged: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Add 'merged' label to closed PR | |
run: gh issue edit "$PR_NUMBER" --add-label "merged" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
PR_NUMBER: ${{ github.event.pull_request.number }} |