From 010863c6fa39b29d768f9b1a799c0abe609e09b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=8BAndrzej=20Ressel?= Date: Fri, 20 Dec 2024 02:33:26 +0100 Subject: [PATCH] Add support for WIP PRs in mergify --- .mergify.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.mergify.yml b/.mergify.yml index 292a54b50..036951f25 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -21,4 +21,11 @@ pull_request_rules: conditions: - merged actions: - delete_head_branch: \ No newline at end of file + delete_head_branch: + + - name: Block WIP PRs + conditions: + - title~=WIP # This condition matches PRs with "WIP" in the title + actions: + comment: + message: "This pull request is marked as WIP and cannot be merged. Please remove 'WIP' from the title to proceed."