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 + "|상태 보기 →>")} ]} ] }')