From fc74c2272bc3cf6ee7be23e75808ddf4af0c29ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Sat, 19 Jul 2025 12:58:25 +0200 Subject: [PATCH] Add approval blocking labels for new bors --- rust-bors.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/rust-bors.toml b/rust-bors.toml index fbfaa980f0567..56f48512b06a3 100644 --- a/rust-bors.toml +++ b/rust-bors.toml @@ -1,2 +1,19 @@ # 6 hours timeout for CI builds timeout = 21600 + +# Do not allow approving PRs with certain labels +labels_blocking_approval = [ + # Waiting for an FCP to finish + "final-comment-period", + "proposed-final-comment-period", + # PRs that were closed or postponed by an FCP + "disposition-close", + "disposition-postpone", + # Waiting for library ACP + "S-waiting-on-ACP", + "S-waiting-on-concerns", + "S-waiting-on-crater", + "S-waiting-on-fcp", + "S-waiting-on-MCP", + "S-waiting-on-team" +]