refactor: 이미지 확장자 테스트용 로그 출력문 제거 #92
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 }} |