Skip to content

Commit

Permalink
Don't block bot on neutral responses (#33465)
Browse files Browse the repository at this point in the history
  • Loading branch information
damccorm authored Dec 30, 2024
1 parent 7800360 commit 2c1b605
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/ci/pr-bot/shared/checks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 2c1b605

Please sign in to comment.