1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 15:45:58 +09:00
This commit is contained in:
syuilo 2017-03-18 02:06:24 +09:00
parent 35f27806e2
commit e0f80a6bae

View File

@ -48,7 +48,7 @@ module.exports = async (app: express.Application) => {
const commits = event.commits;
post([
`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'),
commits.map(commit => `[?[${commit.id.substr(0, 7)}](${commit.url})] ${commit.message.split('\n')[0]}`).join('\n'),
].join('\n'));
break;
case 'refs/heads/release':