Skip to content

Commit 05656ac

Browse files
authored
fix: remove # character from slack channel name
This symbol isn't actually part of the channel name, and causes this notification attempt to always fail.
1 parent c125741 commit 05656ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/e2e/e2e.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ func openPDAlerts(suites []junit.Suite, jobName, jobURL string) {
489489
}); err != nil {
490490
log.Printf("Failed creating pagerduty incident for failure: %v", err)
491491
} else {
492-
if err := alert.SendSlackMessage("#sd-cicd", fmt.Sprintf(`@osde2e A bunch of tests failed at once:
492+
if err := alert.SendSlackMessage("sd-cicd", fmt.Sprintf(`@osde2e A bunch of tests failed at once:
493493
pipeline: %s
494494
URL: %s
495495
PD info: %v`, jobName, jobURL, event)); err != nil {

0 commit comments

Comments
 (0)