From 0a79aae3576aaa17385d17d114ef6d3f3aa1fb48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Wed, 16 Aug 2023 09:21:43 +0200 Subject: [PATCH] chore(mergify): add configuration file for automatic merge (#245) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ci(Mergify): configuration update Signed-off-by: Orhun Parmaksız * chore(mergify): move config to .github --------- Signed-off-by: Orhun Parmaksız --- .github/.mergify.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/.mergify.yml diff --git a/.github/.mergify.yml b/.github/.mergify.yml new file mode 100644 index 0000000000..5038fc8d9a --- /dev/null +++ b/.github/.mergify.yml @@ -0,0 +1,15 @@ +pull_request_rules: + - name: Automatic merge for Dependabot pull requests + conditions: + - author=dependabot[bot] + actions: + merge: + method: squash + + - name: Automatic update to the main branch for pull requests + conditions: + - -conflict # skip PRs with conflicts + - -draft # skip GH draft PRs + - -author=dependabot[bot] # skip dependabot PRs + actions: + update: