Skip to content

Commit

Permalink
more newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
schmalliso committed Aug 31, 2023
1 parent 1d2aad8 commit 979dfcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/controllers/v1/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down
2 changes: 1 addition & 1 deletion api/controllers/v2/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down

0 comments on commit 979dfcf

Please sign in to comment.