From b9175fc7f9ef2cd7875b4e254a7d25b98316c297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Tue, 26 Nov 2024 15:40:43 +0000 Subject: [PATCH] Prevent minor php version to be auto-merged --- .github/renovate.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 491933d..2f92b8d 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -26,5 +26,12 @@ ], "datasourceTemplate": "docker" } + ], + "packageRules": [ + { + "matchDepNames": ["php"], + "matchUpdateTypes": ["!major", "!minor"], + "automerge": true + } ] }