This commit is contained in:
syuilo 2017-03-18 01:42:43 +09:00
parent f0d044c400
commit 827be39858
1 changed files with 10 additions and 0 deletions

View File

@ -29,6 +29,16 @@ module.exports = async (app: express.Application) => {
}
});
handler.on('status', event => {
const state = event.state;
switch (state) {
case 'failure':
const commit = event.commit.commit;
post(`🚨BUILD FAILED🚨⚠: ?[${commit.message}](${commit.url})`);
break;
}
});
handler.on('push', event => {
const ref = event.ref;
switch (ref) {