summaryrefslogtreecommitdiff
path: root/src/server/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api')
-rw-r--r--src/server/api/service/github-bot.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/api/service/github-bot.ts b/src/server/api/service/github-bot.ts
index 3fc5da8bfc..e109545b60 100644
--- a/src/server/api/service/github-bot.ts
+++ b/src/server/api/service/github-bot.ts
@@ -75,9 +75,9 @@ handler.on('status', event => {
const parentState = parentStatuses[0].state;
const stillFailed = parentState == 'failure' || parentState == 'error';
if (stillFailed) {
- post(`**⚠️BUILD STILL FAILED⚠️**: ?[${commit.commit.message}](${commit.html_url})`);
+ post(`⚠️**BUILD STILL FAILED**⚠️: ?[${commit.commit.message}](${commit.html_url})`);
} else {
- post(`**🚨BUILD FAILED🚨**: →→→?[${commit.commit.message}](${commit.html_url})←←←`);
+ post(`🚨**BUILD FAILED**🚨: →→→?[${commit.commit.message}](${commit.html_url})←←←`);
}
});
break;