From bd07cdbef536967da4bad8f5a7c6442349d2887d Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Tue, 20 May 2025 12:43:16 +1000 Subject: [PATCH] Update mergify rule to not evaluate PRs that are not ready for review - to reduce noise and avoid updating stale PRs. --- .github/mergify.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/mergify.yml b/.github/mergify.yml index 48d76219e3d..f4d15208261 100644 --- a/.github/mergify.yml +++ b/.github/mergify.yml @@ -4,6 +4,7 @@ pull_request_rules: - -closed - conflict - -author=dependabot[bot] + - label=ready-for-review - or: - -draft # Don't report conflicts on regular draft. - and: # Do report conflicts on draft that are scheduled for the next major release. @@ -22,6 +23,7 @@ pull_request_rules: - name: Ask to resolve CI failures conditions: - -closed + - label=ready-for-review - or: - check-skipped=test-suite-success - check-skipped=local-testnet-success