From 17fd841903a010965d9fe1db5be8425025d976ef Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Tue, 28 Feb 2017 21:29:16 +0900
Subject: [PATCH] Bold pusher name

---
 src/api/service/github.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/api/service/github.ts b/src/api/service/github.ts
index ade42ae26a..8c3526d2ef 100644
--- a/src/api/service/github.ts
+++ b/src/api/service/github.ts
@@ -34,7 +34,7 @@ module.exports = async (app: express.Application) => {
 		if (ref != 'refs/heads/master') return;
 		const pusher = event.pusher;
 		const compare = event.compare;
-		post(`Pushed! (Pusher: ${pusher.name})\nCompare changes: ${compare}`);
+		post(`Pushed by **${pusher.name}**\nCompare changes: ${compare}`);
 	});
 
 	handler.on('issues', event => {