From 2c1b605e843d04f5ebb7282c20510edfddb1ab4d Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Mon, 30 Dec 2024 14:04:14 -0500 Subject: [PATCH] Don't block bot on neutral responses (#33465) --- scripts/ci/pr-bot/shared/checks.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/pr-bot/shared/checks.ts b/scripts/ci/pr-bot/shared/checks.ts index f27830a1dc29..187ff5771f96 100644 --- a/scripts/ci/pr-bot/shared/checks.ts +++ b/scripts/ci/pr-bot/shared/checks.ts @@ -40,7 +40,8 @@ export async function getChecksStatus( } if ( mostRecentChecks[i].conclusion != "success" && - mostRecentChecks[i].conclusion != "skipped" + mostRecentChecks[i].conclusion != "skipped" && + mostRecentChecks[i].conclusion != "neutral" ) { checkStatus.succeeded = false; }