From f7b6dfa609ead028f3d88b9c079c9871e6046e40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 04:34:13 +0000 Subject: [PATCH 01/10] Bump slackapi/slack-github-action from 1.27.0 to 2.0.0 Bumps [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) from 1.27.0 to 2.0.0. - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](https://github.com/slackapi/slack-github-action/compare/v1.27.0...v2.0.0) --- updated-dependencies: - dependency-name: slackapi/slack-github-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy_helm_chart.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index 3a0aa9a..cc0e484 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -331,7 +331,7 @@ jobs: echo "LAST_COMMIT_MSG=$LAST_COMMIT_MSG" >> $GITHUB_ENV - name: Send notification - uses: slackapi/slack-github-action@v1.27.0 + uses: slackapi/slack-github-action@v2.0.0 id: send_notification if: ${{ fromJson( inputs.slack_notification_enabled ) }} with: @@ -417,7 +417,7 @@ jobs: - name: Update notification if: ${{ always() && fromJson( inputs.slack_notification_enabled ) }} - uses: slackapi/slack-github-action@v1.27.0 + uses: slackapi/slack-github-action@v2.0.0 with: channel-id: ${{ inputs.slack_channel_id }} update-ts: ${{ steps.send_notification.outputs.ts }} From cc9ea1f312c991cd93a49012d848a509ec560778 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 07:48:52 +0200 Subject: [PATCH 02/10] Bump to 3.0.1 --- .github/workflows/deploy_helm_chart.yml | 104 +++++++++--------------- 1 file changed, 37 insertions(+), 67 deletions(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index cc0e484..224a091 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -331,43 +331,28 @@ jobs: echo "LAST_COMMIT_MSG=$LAST_COMMIT_MSG" >> $GITHUB_ENV - name: Send notification - uses: slackapi/slack-github-action@v2.0.0 + uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 id: send_notification if: ${{ fromJson( inputs.slack_notification_enabled ) }} with: - channel-id: ${{ inputs.slack_channel_id }} + method: 'chat.postMessage' + token: ${{ secrets.SLACK_GHBOT_TOKEN }} payload: | - { - "blocks": [ - { - "type": "header", - "text": { - "type": "plain_text", - "text": "${{ inputs.chart_name }} ${{ inputs.environment }} deployment started (In Progress)", - "emoji": true - } - }, - { - "type": "section", - "fields": [ - { - "type": "mrkdwn", - "text": "*Status:*\n:large_yellow_square: In Progress" - }, - { - "type": "mrkdwn", - "text": "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" - }, - { - "type": "mrkdwn", - "text": "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" - } - ] - } - ] - } - env: - SLACK_BOT_TOKEN: ${{ secrets.slack_token }} + channel: ${{ inputs.slack_channel_id }} + blocks: + - type: "header" + text: + type: "plain_text" + text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment started (In Progress)" + emoji: true + - type: "section" + fields: + - type: "mrkdwn" + text: "*Status:*\n:large_yellow_square: In Progress" + - type: "mrkdwn" + text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" + - type: "mrkdwn" + text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" - name: Deploy Helm uses: bitovi/github-actions-deploy-eks-helm@v1.2.12 @@ -417,40 +402,25 @@ jobs: - name: Update notification if: ${{ always() && fromJson( inputs.slack_notification_enabled ) }} - uses: slackapi/slack-github-action@v2.0.0 + uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 with: - channel-id: ${{ inputs.slack_channel_id }} - update-ts: ${{ steps.send_notification.outputs.ts }} + method: 'chat.update' + token: ${{ secrets.SLACK_GHBOT_TOKEN }} payload: | - { - "blocks": [ - { - "type": "header", - "text": { - "type": "plain_text", - "text": "${{ inputs.chart_name }} ${{ inputs.environment }} deployment finished (Completed)", - "emoji": true - } - }, - { - "type": "section", - "fields": [ - { - "type": "mrkdwn", - "text": "*Status:*\n${{ steps.deploy.outcome == 'success' && ':white_check_mark: Success' || ':x: Failure '}}" - }, - { - "type": "mrkdwn", - "text": "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" - }, - { - "type": "mrkdwn", - "text": "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" - } - ] - } - ] - } - env: - SLACK_BOT_TOKEN: ${{ secrets.slack_token }} + channel: ${{ inputs.slack_channel_id }} + ts: ${{ steps.send_notification.outputs.ts }} + blocks: | + - type: "header" + text: + type: "plain_text" + text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment finished (Completed)" + emoji: true + - type: "section" + fields: + - type: "mrkdwn" + text: "*Status:*\n${{ steps.deploy.outcome == 'success' && ':white_check_mark: Success' || ':x: Failure '}}" + - type: "mrkdwn" + text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" + - type: "mrkdwn" + text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" \ No newline at end of file From 3955ace0756151c7472ad37f67cc64bd438229a3 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 10:06:46 +0200 Subject: [PATCH 03/10] Temporarily allow deployment from any branch --- .github/workflows/deploy_helm_chart.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index 4137691..85fefe0 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -115,7 +115,7 @@ on: jobs: diff: runs-on: ubuntu-latest - if: ${{ !contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} + # if: ${{ !contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} environment: ${{ inputs.environment }} permissions: contents: read From 8556e7bc7bcab522ccb7d3d1e156f2e6bd1ccdd1 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 10:26:47 +0200 Subject: [PATCH 04/10] Temporarily allow deployment from any branch --- .github/workflows/deploy_helm_chart.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index 85fefe0..ad1e982 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -115,7 +115,7 @@ on: jobs: diff: runs-on: ubuntu-latest - # if: ${{ !contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} + if: ${{ !contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} environment: ${{ inputs.environment }} permissions: contents: read @@ -269,7 +269,7 @@ jobs: deploy: runs-on: ubuntu-latest - if: ${{ contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} + # if: ${{ contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} environment: ${{ inputs.environment }} permissions: id-token: write From 6e44942f550076e8173df7823a357bbb97046b33 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 10:35:22 +0200 Subject: [PATCH 05/10] Fix slack token reference --- .github/workflows/deploy_helm_chart.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index ad1e982..a9b3a87 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -338,7 +338,7 @@ jobs: if: ${{ fromJson( inputs.slack_notification_enabled ) }} with: method: 'chat.postMessage' - token: ${{ secrets.SLACK_GHBOT_TOKEN }} + token: ${{ secrets.slack_token }} payload: | channel: ${{ inputs.slack_channel_id }} blocks: @@ -407,7 +407,7 @@ jobs: uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 with: method: 'chat.update' - token: ${{ secrets.SLACK_GHBOT_TOKEN }} + token: ${{ secrets.slack_token }} payload: | channel: ${{ inputs.slack_channel_id }} ts: ${{ steps.send_notification.outputs.ts }} From af600460fe64779f706c132123658c9798e439a8 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 10:49:25 +0200 Subject: [PATCH 06/10] Typo fix --- .github/workflows/deploy_helm_chart.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index a9b3a87..f628a83 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -411,7 +411,7 @@ jobs: payload: | channel: ${{ inputs.slack_channel_id }} ts: ${{ steps.send_notification.outputs.ts }} - blocks: | + blocks: - type: "header" text: type: "plain_text" From 40ab194f4126b5086f4451ca9e2b3ad4bf05f1ec Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 10:52:26 +0200 Subject: [PATCH 07/10] Test different message format --- .github/workflows/deploy_helm_chart.yml | 86 +++++++++++++++++-------- 1 file changed, 60 insertions(+), 26 deletions(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index f628a83..fe39937 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -332,6 +332,30 @@ jobs: LAST_COMMIT_MSG=$(git log --format=%B -n 1 FETCH_HEAD | sed 's/`//g' | sed 's/"//g' | tr '\n' ' ') echo "LAST_COMMIT_MSG=$LAST_COMMIT_MSG" >> $GITHUB_ENV + # - name: Send notification + # uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 + # id: send_notification + # if: ${{ fromJson( inputs.slack_notification_enabled ) }} + # with: + # method: 'chat.postMessage' + # token: ${{ secrets.slack_token }} + # payload: | + # channel: ${{ inputs.slack_channel_id }} + # blocks: + # - type: "header" + # text: + # type: "plain_text" + # text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment started (In Progress)" + # emoji: true + # - type: "section" + # fields: + # - type: "mrkdwn" + # text: "*Status:*\n:large_yellow_square: In Progress" + # - type: "mrkdwn" + # text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" + # - type: "mrkdwn" + # text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" + - name: Send notification uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 id: send_notification @@ -341,20 +365,13 @@ jobs: token: ${{ secrets.slack_token }} payload: | channel: ${{ inputs.slack_channel_id }} - blocks: - - type: "header" - text: - type: "plain_text" - text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment started (In Progress)" - emoji: true - - type: "section" + text: "Deployment started :eyes:" + attachments: + - color: "dbab09" fields: - - type: "mrkdwn" - text: "*Status:*\n:large_yellow_square: In Progress" - - type: "mrkdwn" - text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" - - type: "mrkdwn" - text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" + - title: "Status" + short: true + value: "In Progress" - name: Deploy Helm uses: bitovi/github-actions-deploy-eks-helm@29f556cf128eb1b42f834caf13b60a630ee2a20b # v1.2.12 @@ -402,6 +419,30 @@ jobs: "text": "Deploy of ${{ env.CHART }} to ${{ env.ENVIRONMENT }} from GitHub Actions: ${{ env.LAST_COMMIT_MSG }}" }' + # - name: Update notification + # if: ${{ always() && fromJson( inputs.slack_notification_enabled ) }} + # uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 + # with: + # method: 'chat.update' + # token: ${{ secrets.slack_token }} + # payload: | + # channel: ${{ inputs.slack_channel_id }} + # ts: ${{ steps.send_notification.outputs.ts }} + # blocks: + # - type: "header" + # text: + # type: "plain_text" + # text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment finished (Completed)" + # emoji: true + # - type: "section" + # fields: + # - type: "mrkdwn" + # text: "*Status:*\n${{ steps.deploy.outcome == 'success' && ':white_check_mark: Success' || ':x: Failure '}}" + # - type: "mrkdwn" + # text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" + # - type: "mrkdwn" + # text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" + - name: Update notification if: ${{ always() && fromJson( inputs.slack_notification_enabled ) }} uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 @@ -411,18 +452,11 @@ jobs: payload: | channel: ${{ inputs.slack_channel_id }} ts: ${{ steps.send_notification.outputs.ts }} - blocks: - - type: "header" - text: - type: "plain_text" - text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment finished (Completed)" - emoji: true - - type: "section" + text: "Deployment finished! :rocket:" + attachments: + - color: "28a745" fields: - - type: "mrkdwn" - text: "*Status:*\n${{ steps.deploy.outcome == 'success' && ':white_check_mark: Success' || ':x: Failure '}}" - - type: "mrkdwn" - text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" - - type: "mrkdwn" - text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" + - title: "Status" + short: true + value: "Completed" \ No newline at end of file From 6f410803081547cc40c56d2921973410c1118806 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 10:55:30 +0200 Subject: [PATCH 08/10] Revert "Test different message format" This reverts commit 40ab194f4126b5086f4451ca9e2b3ad4bf05f1ec. --- .github/workflows/deploy_helm_chart.yml | 86 ++++++++----------------- 1 file changed, 26 insertions(+), 60 deletions(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index fe39937..f628a83 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -332,30 +332,6 @@ jobs: LAST_COMMIT_MSG=$(git log --format=%B -n 1 FETCH_HEAD | sed 's/`//g' | sed 's/"//g' | tr '\n' ' ') echo "LAST_COMMIT_MSG=$LAST_COMMIT_MSG" >> $GITHUB_ENV - # - name: Send notification - # uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 - # id: send_notification - # if: ${{ fromJson( inputs.slack_notification_enabled ) }} - # with: - # method: 'chat.postMessage' - # token: ${{ secrets.slack_token }} - # payload: | - # channel: ${{ inputs.slack_channel_id }} - # blocks: - # - type: "header" - # text: - # type: "plain_text" - # text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment started (In Progress)" - # emoji: true - # - type: "section" - # fields: - # - type: "mrkdwn" - # text: "*Status:*\n:large_yellow_square: In Progress" - # - type: "mrkdwn" - # text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" - # - type: "mrkdwn" - # text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" - - name: Send notification uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 id: send_notification @@ -365,13 +341,20 @@ jobs: token: ${{ secrets.slack_token }} payload: | channel: ${{ inputs.slack_channel_id }} - text: "Deployment started :eyes:" - attachments: - - color: "dbab09" + blocks: + - type: "header" + text: + type: "plain_text" + text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment started (In Progress)" + emoji: true + - type: "section" fields: - - title: "Status" - short: true - value: "In Progress" + - type: "mrkdwn" + text: "*Status:*\n:large_yellow_square: In Progress" + - type: "mrkdwn" + text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" + - type: "mrkdwn" + text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" - name: Deploy Helm uses: bitovi/github-actions-deploy-eks-helm@29f556cf128eb1b42f834caf13b60a630ee2a20b # v1.2.12 @@ -419,30 +402,6 @@ jobs: "text": "Deploy of ${{ env.CHART }} to ${{ env.ENVIRONMENT }} from GitHub Actions: ${{ env.LAST_COMMIT_MSG }}" }' - # - name: Update notification - # if: ${{ always() && fromJson( inputs.slack_notification_enabled ) }} - # uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 - # with: - # method: 'chat.update' - # token: ${{ secrets.slack_token }} - # payload: | - # channel: ${{ inputs.slack_channel_id }} - # ts: ${{ steps.send_notification.outputs.ts }} - # blocks: - # - type: "header" - # text: - # type: "plain_text" - # text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment finished (Completed)" - # emoji: true - # - type: "section" - # fields: - # - type: "mrkdwn" - # text: "*Status:*\n${{ steps.deploy.outcome == 'success' && ':white_check_mark: Success' || ':x: Failure '}}" - # - type: "mrkdwn" - # text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" - # - type: "mrkdwn" - # text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" - - name: Update notification if: ${{ always() && fromJson( inputs.slack_notification_enabled ) }} uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 #3.0.1 @@ -452,11 +411,18 @@ jobs: payload: | channel: ${{ inputs.slack_channel_id }} ts: ${{ steps.send_notification.outputs.ts }} - text: "Deployment finished! :rocket:" - attachments: - - color: "28a745" + blocks: + - type: "header" + text: + type: "plain_text" + text: "${{ inputs.chart_name }} ${{ inputs.environment }} deployment finished (Completed)" + emoji: true + - type: "section" fields: - - title: "Status" - short: true - value: "Completed" + - type: "mrkdwn" + text: "*Status:*\n${{ steps.deploy.outcome == 'success' && ':white_check_mark: Success' || ':x: Failure '}}" + - type: "mrkdwn" + text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" + - type: "mrkdwn" + text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" \ No newline at end of file From 972d37a83385c80423a73737857d0cd0375eff1b Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 11:00:37 +0200 Subject: [PATCH 09/10] Revert "Temporarily allow deployment from any branch" This reverts commit 8556e7bc7bcab522ccb7d3d1e156f2e6bd1ccdd1. --- .github/workflows/deploy_helm_chart.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index f628a83..a548238 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -115,7 +115,7 @@ on: jobs: diff: runs-on: ubuntu-latest - if: ${{ !contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} + # if: ${{ !contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} environment: ${{ inputs.environment }} permissions: contents: read @@ -269,7 +269,7 @@ jobs: deploy: runs-on: ubuntu-latest - # if: ${{ contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} + if: ${{ contains(format('{0}/{1}', 'refs/heads', inputs.deploy_branch ), github.ref ) }} environment: ${{ inputs.environment }} permissions: id-token: write From af4a6eb3dd401a53fb2ce632e5f37fde9d984a5c Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 30 Mar 2026 11:05:30 +0200 Subject: [PATCH 10/10] Fix last line --- .github/workflows/deploy_helm_chart.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/deploy_helm_chart.yml b/.github/workflows/deploy_helm_chart.yml index a548238..ce69f64 100644 --- a/.github/workflows/deploy_helm_chart.yml +++ b/.github/workflows/deploy_helm_chart.yml @@ -425,4 +425,3 @@ jobs: text: "*Last Commit Message:*\n${{ env.LAST_COMMIT_MSG }}" - type: "mrkdwn" text: "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" - \ No newline at end of file