Skip to content

Commit 5974a88

Browse files
npolshakovabewebi
andauthored
Fix slack notification url (#10388)
Co-authored-by: Bernie Birnbaum <[email protected]>
1 parent ee4fc25 commit 5974a88

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/workflows/docs-gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,5 +136,5 @@ jobs:
136136
run : |
137137
curl -X POST\
138138
-H 'Content-type: application/json'\
139-
--data '{"text":"Gloo Edge has <https://github.com/solo-io/gloo/actions/runs/${{github.run_id}}|failed a docs build> on `main` branch"}'\
139+
--data '{"text":"k8sgateway has <https://github.com/k8sgateway/k8sgateway/actions/runs/${{github.run_id}}|failed a docs build> on `main` branch"}'\
140140
${{ env.SLACK_DEBUG_TESTING == true && secrets.SLACK_INTEGRATION_TESTING_WEBHOOK || secrets.EDGE_TEAM_BOTS_WEBHOOK }}

.github/workflows/nightly-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ jobs:
488488
go-version-file: go.mod
489489
- name: Send Slack Message
490490
env:
491-
PARENT_JOB_URL: https://github.com/solo-io/gloo/actions/runs/${{github.run_id}} # parent job hyperlink
491+
PARENT_JOB_URL: https://github.com/k8sgateway/k8sgateway/actions/runs/${{github.run_id}} # parent job hyperlink
492492
PREAMBLE: ${{ steps.compute-preamble.outputs.preamble }} # text to hyperlink at start of slack message
493493
SLACKBOT_BEARER: ${{ secrets.SLACKBOT_BEARER }}
494494
run: |

.github/workflows/push-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
env:
185185
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
186186
run: |
187-
JOB_URL=https://github.com/solo-io/gloo/actions/runs/${GITHUB_RUN_ID}
187+
JOB_URL=https://github.com/k8sgateway/k8sgateway/actions/runs/${GITHUB_RUN_ID}
188188
MESSAGE="❌ *Failure:* Automated copy of reference docs for ${{ steps.version-variables.outputs.minor }} failed. <${JOB_URL}|Review the workflow failure>"
189189
190190
curl \

.github/workflows/trivy-analysis-scheduled.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ jobs:
4848
run : |
4949
curl -X POST\
5050
-H 'Content-type: application/json'\
51-
--data '{"text":"Gloo Edge Vulnerability Scan has failed, visit https://github.com/solo-io/gloo/actions/runs/${{github.run_id}} to view logs."}'\
51+
--data '{"text":"k8sgateway Vulnerability Scan has failed, visit https://github.com/k8sgateway/k8sgateway/actions/runs/${{github.run_id}} to view logs."}'\
5252
${{ env.SLACK_DEBUG_TESTING == true && secrets.SLACK_INTEGRATION_TESTING_WEBHOOK || secrets.EDGE_TEAM_BOTS_WEBHOOK }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
changelog:
2+
- type: NON_USER_FACING
3+
description: Fix URLs in Slack notifications for GHAs such that they correctly link to actions in this repo.

0 commit comments

Comments
 (0)