From fe95fdcab380372f49c765aa53a4d61186f33bf1 Mon Sep 17 00:00:00 2001 From: ykim-1 Date: Mon, 28 Oct 2024 16:41:57 -0700 Subject: [PATCH] gha test 2 --- .github/workflows/release-notify-slack.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-notify-slack.yml b/.github/workflows/release-notify-slack.yml index 53fff75a..c6b6a8fd 100644 --- a/.github/workflows/release-notify-slack.yml +++ b/.github/workflows/release-notify-slack.yml @@ -15,13 +15,12 @@ jobs: channel-id: ${{ secrets.SLACK_CHANNEL_ID }} payload: | { - "text": "*New Release Published in ${{ github.repository }}!*", "blocks": [ { "type": "section", "text": { "type": "mrkdwn", - "text": "*New Release Published: *<${{ github.event.release.html_url }}|${{ github.repository }} - ${{ github.event.release.tag_name }}>* is now live! :tada:" + "text": "New Release Published: *<${{ github.event.release.html_url }}|${{ github.repository }} - ${{ github.event.release.tag_name }}>* is now live! :tada:" } } ] @@ -36,7 +35,7 @@ jobs: payload: | { "thread_ts": "${{ steps.main_message.outputs.ts }}", - "text": "Release Notes" + "text": "${{ github.event.release.body }}" } env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}