diff --git a/api/controllers/v1/jobs.ts b/api/controllers/v1/jobs.ts index dfbfef3a0..652b6d226 100644 --- a/api/controllers/v1/jobs.ts +++ b/api/controllers/v1/jobs.ts @@ -179,7 +179,7 @@ function prepProgressMessage( const webhookWikiUrl = 'https://wiki.corp.mongodb.com/display/DE/How-To%3A+Use+Snooty%27s+Autobuilder+to+Build+Your+Content'; const updatePlease = `:exclamation: You used the old webhook for this build. <${webhookWikiUrl}|Update to the new webhook> in your fork of this repo to save 90s per build.`; - inQueueMsg = updatePlease + '\n' + msg; + inQueueMsg = updatePlease + '\n\n' + msg; } return inQueueMsg + 'has successfully been added to the ' + env + ' queue.'; case 'inProgress': diff --git a/api/controllers/v2/jobs.ts b/api/controllers/v2/jobs.ts index 9b8827726..9784f1fbf 100644 --- a/api/controllers/v2/jobs.ts +++ b/api/controllers/v2/jobs.ts @@ -122,7 +122,7 @@ function prepProgressMessage( const webhookWikiUrl = 'https://wiki.corp.mongodb.com/display/DE/How-To%3A+Use+Snooty%27s+Autobuilder+to+Build+Your+Content'; const updatePlease = `:exclamation: You used the old webhook for this build. <${webhookWikiUrl}|Update to the new webhook> in your fork of this repo to save 90s per build.`; - inQueueMsg = updatePlease + '\n' + msg; + inQueueMsg = updatePlease + '\n\n' + msg; } return inQueueMsg + 'has successfully been added to the ' + env + ' queue.'; case 'inProgress':