diff --git a/src/api/service/github.ts b/src/api/service/github.ts
index 79ebc9104e4dd300cd00ee6f33869a68db377a12..c811a38da9480625c5ee8ec48eaca5d1a1261cd3 100644
--- a/src/api/service/github.ts
+++ b/src/api/service/github.ts
@@ -37,8 +37,7 @@ module.exports = async (app: express.Application) => {
 				const compare = event.compare;
 				const commits = event.commits;
 				post([
-					`Pushed by **${pusher.name}** with ${commits.length} commit${commits.length > 1 ? 's' : ''}: ?[Compare Changes](${compare})`,
-					'',
+					`Pushed by **${pusher.name}** with ?[${commits.length} commit${commits.length > 1 ? 's' : ''}](${compare}):`,
 					commits.map(commit => `・?[${commit.message.split('\n')[0]}](${commit.url})`).join('\n'),
 				].join('\n'));
 				break;