Fix
This commit is contained in:
parent
5182a0b44b
commit
c3416463ab
|
@ -51,7 +51,7 @@ module.exports = async (app: express.Application) => {
|
||||||
}
|
}
|
||||||
const parentStatuses = JSON.parse(body);
|
const parentStatuses = JSON.parse(body);
|
||||||
const parentState = parentStatuses[0].state;
|
const parentState = parentStatuses[0].state;
|
||||||
const stillFailed = parentState == 'failure';
|
const stillFailed = parentState == 'failure' || parentState == 'error';
|
||||||
if (stillFailed) {
|
if (stillFailed) {
|
||||||
post(`**⚠️BUILD STILL FAILED⚠️**: ?[${commit.commit.message}](${commit.html_url})`);
|
post(`**⚠️BUILD STILL FAILED⚠️**: ?[${commit.commit.message}](${commit.html_url})`);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue