From de4b0925d09d93791f7210cb39d5fa737cc21d48 Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Sat, 6 Jun 2026 18:43:37 +0300 Subject: ci: T8966: exempt bots from invalid-title + invalid-body convention gates (#19) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the blessed 3-condition bot exclusion (-author~=\[bot\]$, author!=copilot-swe-agent, author!=vyosbot) to the two convention labeling rules so bot-authored PRs aren't gated by human title/body conventions. Mirrors the live Auto-assign PR author rule. Part of the uniform bot-excluded protections rollout (IS-531). 🤖 Generated by [robots](https://vyos.io) --- .mergify.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.mergify.yml b/.mergify.yml index 8864c86..e467fdd 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -104,6 +104,9 @@ pull_request_rules: conditions: - '-closed' - '-merged' + - '-author~=\[bot\]$' + - 'author!=copilot-swe-agent' + - 'author!=vyosbot' - or: - '#title < 10' - 'title~=(?i)\bwip\b' @@ -123,6 +126,9 @@ pull_request_rules: conditions: - '-closed' - '-merged' + - '-author~=\[bot\]$' + - 'author!=copilot-swe-agent' + - 'author!=vyosbot' - '#body < 80' actions: label: -- cgit v1.2.3