From 0e0101560b56c8077cd67b2c47f137d608d7da45 Mon Sep 17 00:00:00 2001 From: SylvainJuge <763082+SylvainJuge@users.noreply.github.com> Date: Fri, 29 Sep 2023 13:43:10 +0200 Subject: [PATCH] add minimal mergify config (#3338) * add minimal mergify config * add rule with label for PRs --- .mergify.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .mergify.yml diff --git a/.mergify.yml b/.mergify.yml new file mode 100644 index 0000000000..d86ece6e7c --- /dev/null +++ b/.mergify.yml @@ -0,0 +1,13 @@ +queue_rules: + - name: default + # branch protection rules are automatically included, no extra rule needed for now + +pull_request_rules: + - name: Automatic squash and merge on approval with success checks and ready-to-merge label + conditions: + - label=ready-to-merge + - base=main + actions: + queue: + method: squash + name: default