From fc611173d5f0c34c10def7ee64f5084bc5ad24a0 Mon Sep 17 00:00:00 2001 From: minbros Date: Sun, 6 Sep 2026 00:51:10 +0900 Subject: [PATCH 1/2] =?UTF-8?q?ci:=20PR=20Discord=20=EC=95=8C=EB=A6=BC=20?= =?UTF-8?q?=EC=9B=8C=ED=81=AC=ED=94=8C=EB=A1=9C=EC=9A=B0=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Backend와 동일한 opened/reopened 알림 구성을 적용했다. --- .github/workflows/discord-pr-notify.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/discord-pr-notify.yml diff --git a/.github/workflows/discord-pr-notify.yml b/.github/workflows/discord-pr-notify.yml new file mode 100644 index 00000000..0dceb91a --- /dev/null +++ b/.github/workflows/discord-pr-notify.yml @@ -0,0 +1,20 @@ +name: Discord PR 알림 + +on: + pull_request: + types: [opened, reopened] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Discord 알림 전송 + uses: sarisia/actions-status-discord@v1 + with: + webhook: ${{ secrets.DISCORD_WEBHOOK_URL }} + title: "PR 올라왔어요!" + description: | + ${{ github.event.pull_request.title }} + ${{ github.event.pull_request.html_url }} + color: 0x5865F2 + username: GitHub From 6cfc0a95eb4fe7a9242b74c041f3c4d36392da39 Mon Sep 17 00:00:00 2001 From: minbros Date: Sun, 6 Sep 2026 01:05:10 +0900 Subject: [PATCH 2/2] =?UTF-8?q?ci(deps):=20Discord=20=EC=95=8C=EB=A6=BC=20?= =?UTF-8?q?=EC=95=A1=EC=85=98=EC=9D=84=20=EB=B6=88=EB=B3=80=20SHA=EB=A1=9C?= =?UTF-8?q?=20=EA=B3=A0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - v1 태그가 가리키는 검증된 커밋으로 액션 참조를 고정 --- .github/workflows/discord-pr-notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/discord-pr-notify.yml b/.github/workflows/discord-pr-notify.yml index 0dceb91a..eded78e5 100644 --- a/.github/workflows/discord-pr-notify.yml +++ b/.github/workflows/discord-pr-notify.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Discord 알림 전송 - uses: sarisia/actions-status-discord@v1 + uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 with: webhook: ${{ secrets.DISCORD_WEBHOOK_URL }} title: "PR 올라왔어요!"