From 1dfc6680ee7287fdd276f7fd6fd9f4b3ea6cb0e6 Mon Sep 17 00:00:00 2001 From: Selim Ustel Date: Tue, 3 Mar 2026 15:28:37 +0100 Subject: [PATCH 1/7] fix: slack messages action migration --- .github/actions/slack-notification/action.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index dc7d4af7b..7f6bc6855 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -16,9 +16,10 @@ runs: using: "composite" steps: - name: Send Slack notification - uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2 + uses: slackapi/slack-github-action@v2.0.0 with: - channel-id: ${{ inputs.channel-id }} - slack-message: ${{ inputs.message }} - env: - SLACK_BOT_TOKEN: ${{ inputs.bot-token }} + method: chat.postMessage + token: ${{ inputs.bot-token }} + payload: | + channel: "${{ inputs.channel-id }}" + text: "${{ inputs.message }}" \ No newline at end of file From 3cfa98da50a2d3d11dc0974737b37e4af47adc30 Mon Sep 17 00:00:00 2001 From: Selim Ustel Date: Thu, 5 Mar 2026 12:13:00 +0300 Subject: [PATCH 2/7] fix: change to the hash --- .github/actions/slack-notification/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index 7f6bc6855..1d65c656e 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Send Slack notification - uses: slackapi/slack-github-action@v2.0.0 + uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2 with: method: chat.postMessage token: ${{ inputs.bot-token }} From 5ccd846676381dc005812a33e506fb2439c8d48a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Selim=20=C3=9Cstel?= <46201537+stelselim@users.noreply.github.com> Date: Thu, 12 Mar 2026 10:15:25 +0100 Subject: [PATCH 3/7] Fix formatting of Slack action version reference --- .github/actions/slack-notification/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index 1d65c656e..33af8118a 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -16,10 +16,10 @@ runs: using: "composite" steps: - name: Send Slack notification - uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2 + uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d#v2 with: method: chat.postMessage token: ${{ inputs.bot-token }} payload: | channel: "${{ inputs.channel-id }}" - text: "${{ inputs.message }}" \ No newline at end of file + text: "${{ inputs.message }}" From c8afd45b65052a97c9739a22ed1dd6bd67623fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Selim=20=C3=9Cstel?= <46201537+stelselim@users.noreply.github.com> Date: Thu, 12 Mar 2026 10:15:45 +0100 Subject: [PATCH 4/7] Fix formatting of Slack GitHub Action reference --- .github/actions/slack-notification/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index 33af8118a..ac8a4818c 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Send Slack notification - uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d#v2 + uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2 with: method: chat.postMessage token: ${{ inputs.bot-token }} From 9a28b7da715b659ede00bf519017b2e3e323c1f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Selim=20=C3=9Cstel?= <46201537+stelselim@users.noreply.github.com> Date: Fri, 13 Mar 2026 10:06:52 +0100 Subject: [PATCH 5/7] Fix comment formatting in action.yml --- .github/actions/slack-notification/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index ac8a4818c..8fe4fdd5b 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Send Slack notification - uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2 + uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2 with: method: chat.postMessage token: ${{ inputs.bot-token }} From 830f6ed656f1ea7e4a064a5b0546687d741ad158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Selim=20=C3=9Cstel?= <46201537+stelselim@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:59:19 +0100 Subject: [PATCH 6/7] Fix comment formatting for Slack action version --- .github/actions/slack-notification/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index 8fe4fdd5b..ac8a4818c 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Send Slack notification - uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2 + uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2 with: method: chat.postMessage token: ${{ inputs.bot-token }} From 8aca3b595cc31d6c8bf59b4adfd88935caba5087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Selim=20=C3=9Cstel?= <46201537+stelselim@users.noreply.github.com> Date: Fri, 13 Mar 2026 14:35:14 +0100 Subject: [PATCH 7/7] Fix formatting in Slack notification action.yml --- .github/actions/slack-notification/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/slack-notification/action.yml b/.github/actions/slack-notification/action.yml index ac8a4818c..7dd5d3a99 100644 --- a/.github/actions/slack-notification/action.yml +++ b/.github/actions/slack-notification/action.yml @@ -16,7 +16,7 @@ runs: using: "composite" steps: - name: Send Slack notification - uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2 + uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2 with: method: chat.postMessage token: ${{ inputs.bot-token }}