From 1f1d12d6b9574cd64084b4b070820465e127bb2d Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Mon, 19 Feb 2024 13:19:28 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20renovate:=20Only=20update=20bran?= =?UTF-8?q?ch=20in=20case=20of=20conflicts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renovate defaults to `behind-base-branch` strategy if automerge is enabled (which we do now for non-major update). We don't need unnecessary rebasing when there are no conflicts. --- .github/renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 4e65744d6..0f34c61c8 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -13,6 +13,9 @@ { "matchUpdateTypes": ["minor", "patch", "pin", "digest"], "automerge": true + }, + { + "rebaseWhen": "conflicted" } ] }