Skip to content

Commit c23ac53

Browse files
Fixes slack message formatting for deployment confidence dashboard (#29)
This commit fixes the formatting to no longer attempt to render the URL in bold
1 parent 5a34527 commit c23ac53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export async function postSlackNotification (
7373
let text
7474
const baseText = `<${repoUrl}|${repo.repo}> deployment 🚀 to <${deploymentUrl}|${environment}> by <@${actor.toLowerCase()}> completed with ${status} ${statusIcon} - ${commitText}.`
7575
if (deploymentConfidenceUrl !== '' && status === 'success') {
76-
text = `${baseText}\n\n- :toolbox: Check out our <${deploymentConfidenceUrl}|**deployment confidence dashboard**> so you are the first to know if anything is broken.`
76+
text = `${baseText}\n\n:toolbox: Check out our <${deploymentConfidenceUrl}|deployment confidence dashboard> so you are the first to know if anything is broken.`
7777
} else {
7878
text = baseText
7979
}

0 commit comments

Comments
 (0)