From 00bc05704e39292a9d385ef20ddf1b272f7d2ee1 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Mon, 29 Oct 2018 05:26:28 +0100 Subject: [PATCH] fix(github): accept neutral check runs --- lib/platform/github/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js index 626a5c7c8c..5e7963b74d 100644 --- a/lib/platform/github/index.js +++ b/lib/platform/github/index.js @@ -541,7 +541,7 @@ async function getBranchStatus(branchName, requiredStatusChecks) { } if ( (commitStatus.state === 'success' || commitStatus.statuses.length === 0) && - checkRuns.every(run => run.conclusion === 'success') + checkRuns.every(run => ['neutral', 'success'].includes(run.conclusion)) ) { return 'success'; } -- GitLab