From a9b1579bed1a460f261e5793ed5724e3b6b15b3e Mon Sep 17 00:00:00 2001 From: manNomi Date: Tue, 6 Jan 2026 01:37:35 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20=EB=94=94=EB=B2=84=EA=B7=B8?= =?UTF-8?q?=20step=20=EC=B6=94=EA=B0=80=EB=A1=9C=20=EC=9D=B4=EB=B2=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=A0=95=EB=B3=B4=20=ED=99=95=EC=9D=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 이벤트 이름과 레이블 이름을 출력하여 조건 불일치 원인 파악 - PR author 정보도 함께 출력 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/pr-label-notify.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pr-label-notify.yml b/.github/workflows/pr-label-notify.yml index f1c25b92..7b163475 100644 --- a/.github/workflows/pr-label-notify.yml +++ b/.github/workflows/pr-label-notify.yml @@ -13,6 +13,12 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Debug event info + run: | + echo "Event name: ${{ github.event_name }}" + echo "Label name: ${{ github.event.label.name }}" + echo "PR author: ${{ github.event.pull_request.user.login }}" + - name: Send Discord notification for PR label if: github.event_name == 'pull_request_target' && github.event.label.name == 'need_review' env: From b69f05752d8a1872d7f514ee3d4a74bb2256acdf Mon Sep 17 00:00:00 2001 From: manNomi Date: Tue, 6 Jan 2026 01:40:01 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A7=B9=20=EB=94=94=EB=B2=84=EA=B7=B8?= =?UTF-8?q?=20step=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Discord 알림이 정상 작동 확인 후 디버그 코드 제거 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/pr-label-notify.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/pr-label-notify.yml b/.github/workflows/pr-label-notify.yml index 7b163475..f1c25b92 100644 --- a/.github/workflows/pr-label-notify.yml +++ b/.github/workflows/pr-label-notify.yml @@ -13,12 +13,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Debug event info - run: | - echo "Event name: ${{ github.event_name }}" - echo "Label name: ${{ github.event.label.name }}" - echo "PR author: ${{ github.event.pull_request.user.login }}" - - name: Send Discord notification for PR label if: github.event_name == 'pull_request_target' && github.event.label.name == 'need_review' env: