From 6711159ff4595d24ec66b5aed8e4947e4bcd5c79 Mon Sep 17 00:00:00 2001 From: Daniel Chalmers Date: Sun, 26 Jul 2026 15:42:05 -0500 Subject: [PATCH] Add Renovate config --- .github/renovate.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..16315a7 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,32 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "labels": ["dependencies"], + "packageRules": [ + { + "description": "Group non-major NuGet updates into a single PR", + "matchManagers": ["nuget"], + "matchUpdateTypes": ["minor", "patch"], + "groupName": "NuGet packages (non-major)" + }, + { + "description": "ASP.NET Core packages are pinned per target framework (net9.0 -> 9.0.x, net10.0 -> 10.0.x); majors must follow a TFM upgrade instead", + "matchPackageNames": ["Microsoft.AspNetCore.*"], + "matchUpdateTypes": ["major"], + "enabled": false + }, + { + "description": "MudBlazor majors are breaking for this library; require approval from the dependency dashboard", + "matchPackageNames": ["MudBlazor"], + "matchUpdateTypes": ["major"], + "dependencyDashboardApproval": true + }, + { + "description": "Group GitHub Actions updates into a single PR", + "matchManagers": ["github-actions"], + "groupName": "GitHub Actions" + } + ] +}