fix: 소셜 로그인 시 카카오 앱 환경인 경우 nonce 검증을 하지 않도록 변경 #75
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 }} |