From f657ff6c59e198673d17cc844817ed4041e768e1 Mon Sep 17 00:00:00 2001 From: Valentin Sickert <17144397+Lapotor@users.noreply.github.com> Date: Sat, 18 Nov 2023 15:31:42 +0100 Subject: [PATCH] chore: disable major and minor php updates Signed-off-by: Valentin Sickert <17144397+Lapotor@users.noreply.github.com> --- renovate.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 1496cabf..106efb59 100644 --- a/renovate.json +++ b/renovate.json @@ -13,5 +13,13 @@ "baseBranches": ["main"], "minimumReleaseAge": "3 days", "rollbackPrs": true, - "reviewers": ["@lapotor", "@whyauthentic"] + "reviewers": ["@lapotor", "@whyauthentic"], + "packageRules": [ + { + "description": "Disable major and minor updates for PHP", + "matchPackageNames": "php", + "matchUpdateTypes": ["major", "minor"], + "enabled": false + } + ] }