forked from FoundKeyGang/FoundKey
🚨
This commit is contained in:
parent
f0d044c400
commit
827be39858
1 changed files with 10 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue