summaryrefslogtreecommitdiff
path: root/src/server/api/service/github-bot.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-11-16 23:02:01 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-11-16 23:02:01 +0900
commit59e229d962de56da0a5e0c04dcbeff6575fb5736 (patch)
tree50c2cf136a5e8243f2b75601f9a7b403b0c42a31 /src/server/api/service/github-bot.ts
parentClean up (diff)
downloadsharkey-59e229d962de56da0a5e0c04dcbeff6575fb5736.tar.gz
sharkey-59e229d962de56da0a5e0c04dcbeff6575fb5736.tar.bz2
sharkey-59e229d962de56da0a5e0c04dcbeff6575fb5736.zip
Update github-bot.ts
Diffstat (limited to 'src/server/api/service/github-bot.ts')
-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;