From 90e6ed595d0339e147472a3c4bc35fc10e7358f6 Mon Sep 17 00:00:00 2001 From: Qbandev Date: Thu, 5 Mar 2026 10:23:00 +0100 Subject: [PATCH] fix: remove standard human review rule from policy-bot config The "standard human review" rule had no `if` conditions, causing policy-bot to post a `pending` status on every PR across all installed repos. Removing it so only cherry-pick PRs targeting release/* branches are evaluated; all other PRs will get a "skipped" status. Co-Authored-By: Claude Opus 4.6 --- policy.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/policy.yml b/policy.yml index 568e7b2..fdd09e1 100644 --- a/policy.yml +++ b/policy.yml @@ -8,7 +8,6 @@ policy: approval: - or: - "cherry-pick auto-approval" - - "standard human review" approval_rules: - name: "cherry-pick auto-approval" @@ -23,10 +22,3 @@ approval_rules: total: "< 200" requires: count: 0 - - - name: "standard human review" - description: "Default team-based review for all other PRs" - requires: - count: 1 - teams: - - "MetaMask/release-team"