From c3bfea88d670e61f0e27e86aa07205d92a7fab07 Mon Sep 17 00:00:00 2001 From: mu88 <4560672+mu88@users.noreply.github.com> Date: Wed, 10 Jul 2024 18:46:09 +0200 Subject: [PATCH] chore(deps): disable major updates of certain .NET packages A major update of these packages usually indicates a new .NET major version and therefore requires other steps, too. --- renovate.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/renovate.json b/renovate.json index 37304f2..209da02 100644 --- a/renovate.json +++ b/renovate.json @@ -30,6 +30,13 @@ "automergeType": "branch" }, { + "description": "Disable major updates of certain .NET packages as this shall be done manually", + "matchPackagePrefixes": ["Microsoft.AspNetCore.", "Microsoft.Bcl.", "Microsoft.Extensions."], + "matchUpdateTypes": ["major"], + "enabled": false + }, + { + "description": "Disable major updates of Docker-related components as this shall be done manually", "enabled": false, "matchDatasources": [ "docker" @@ -39,6 +46,7 @@ ] }, { + "description": "Disable major updates global.json as this shall be done manually", "matchFileNames": ["global.json"], "enabled": false }