Skip to content

Commit 3c23382

Browse files
authored
Fix release notes slack webhook (#3106)
1 parent 68a29c1 commit 3c23382

4 files changed

+19
-27
lines changed

.github/workflows/app-manager-release-notes.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,9 @@ jobs:
5656
5757
- name: Slack Notification
5858
uses: slackapi/[email protected]
59-
with:
59+
with:
60+
webhook: ${{ secrets.KOTS_RELEASE_NOTES_SLACK_WEBHOOK }}
61+
webhook-type: webhook-trigger
6062
payload: |
61-
{
62-
"version": "${{ github.event.client_payload.version }}",
63-
"pull_request_url": "${{steps.cpr.outputs.pull-request-url}}"
64-
}
65-
env:
66-
SLACK_WEBHOOK_URL: ${{ secrets.KOTS_RELEASE_NOTES_SLACK_WEBHOOK }}
63+
version: "${{ github.event.client_payload.version }}"
64+
pull_request_url: "${{steps.cpr.outputs.pull-request-url}}"

.github/workflows/kubernetes-installer-release-notes.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,9 @@ jobs:
5656
5757
- name: Slack Notification
5858
uses: slackapi/[email protected]
59-
with:
59+
with:
60+
webhook: ${{ secrets.KURL_RELEASE_NOTES_SLACK_WEBHOOK }}
61+
webhook-type: webhook-trigger
6062
payload: |
61-
{
62-
"version": "${{ github.event.client_payload.version }}",
63-
"pull_request_url": "${{steps.cpr.outputs.pull-request-url}}"
64-
}
65-
env:
66-
SLACK_WEBHOOK_URL: ${{ secrets.KURL_RELEASE_NOTES_SLACK_WEBHOOK }}
63+
version: "${{ github.event.client_payload.version }}"
64+
pull_request_url: "${{steps.cpr.outputs.pull-request-url}}"

.github/workflows/replicated-sdk-release-notes.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,9 @@ jobs:
6060
6161
- name: Slack Notification
6262
uses: slackapi/[email protected]
63-
with:
63+
with:
64+
webhook: ${{ secrets.REPLICATED_SDK_RELEASE_NOTES_SLACK_WEBHOOK }}
65+
webhook-type: webhook-trigger
6466
payload: |
65-
{
66-
"version": "${{ github.event.client_payload.version }}",
67-
"pull_request_url": "${{steps.cpr.outputs.pull-request-url}}"
68-
}
69-
env:
70-
SLACK_WEBHOOK_URL: ${{ secrets.REPLICATED_SDK_RELEASE_NOTES_SLACK_WEBHOOK }}
67+
version: "${{ github.event.client_payload.version }}"
68+
pull_request_url: "${{steps.cpr.outputs.pull-request-url}}"

.github/workflows/vendor-portal-release-notes.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,8 @@ jobs:
6464
- name: Slack Notification
6565
uses: slackapi/[email protected]
6666
with:
67+
webhook: ${{ secrets.VENDOR_PORTAL_RELEASE_NOTES_SLACK_WEBHOOK }}
68+
webhook-type: webhook-trigger
6769
payload: |
68-
{
69-
"version": "${{ github.event.client_payload.version }}",
70-
"pull_request_url": "${{ steps.cpr.outputs.pull-request-url }}"
71-
}
72-
env:
73-
SLACK_WEBHOOK_URL: ${{ secrets.VENDOR_PORTAL_RELEASE_NOTES_SLACK_WEBHOOK }}
70+
version: "${{ github.event.client_payload.version }}"
71+
pull_request_url: "${{ steps.cpr.outputs.pull-request-url }}"

0 commit comments

Comments
 (0)