From b068a3083560cff43898d966f9c7399ea2601947 Mon Sep 17 00:00:00 2001 From: "kihwan.song" Date: Wed, 29 Apr 2026 10:30:51 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8A=AC=EB=9E=99=20=EC=8A=A4=ED=81=AC?= =?UTF-8?q?=EB=A6=BD=ED=8A=B8=20=EB=A9=94=EC=84=B8=EC=A7=80=20=EC=88=98?= =?UTF-8?q?=EC=A0=953?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notify-slack/action.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/notify-slack/action.yml b/notify-slack/action.yml index 03cd9d6..b81ad69 100644 --- a/notify-slack/action.yml +++ b/notify-slack/action.yml @@ -28,7 +28,7 @@ runs: # 멀티라인 커밋 메시지면 첫 줄만 COMMIT_MSG="$(printf '%s' "$COMMIT_MSG" | head -n1)" - HEADER_TEXT="🚀 배포 시작 — ${REPO}" + HEADER_TEXT="배포 시작 — ${REPO}" PAYLOAD=$(jq -n \ --arg repo "$REPO" \ @@ -37,19 +37,13 @@ runs: --arg actor "$ACTOR" \ --arg sturl "$STATUS_URL" \ '{ - text: ("🚀 " + $repo + " 배포 시작"), + text: ($repo + " 배포 시작"), blocks: [ {type:"section", text:{type:"mrkdwn", - text: ("🚀 *" + $repo + "* 배포 시작")}}, + text: ("*" + $repo + "* 배포 시작")}}, {type:"context", elements:[ {type:"mrkdwn", - text: ($branch + " · " + $msg + " · " + $actor + " <" + $sturl)} - ]}, - {type:"actions", elements:[ - {type:"button", - text:{type:"plain_text", text:"상태 보기 →>", emoji:true}, - url:$sturl, - style:"primary"} + text: ($branch + " · " + $msg + " · " + $actor + " <" + $sturl + "|상태 보기 →>")} ]} ] }')