From 0dab5f42e9e446c35dd9ad33fd9a68bb04cbfe95 Mon Sep 17 00:00:00 2001 From: Theauxm <43664045+Theauxm@users.noreply.github.com> Date: Thu, 2 Jul 2026 14:10:49 -0600 Subject: [PATCH] chore: split Dependabot majors into their own PRs; hold HotChocolate at 15 --- .github/dependabot.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f790db9..6c0da1e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,14 @@ updates: schedule: { interval: "weekly" } open-pull-requests-limit: 10 groups: - nuget-dependencies: { patterns: ["*"] } + # Group only minor + patch; major bumps get their own reviewable PRs. + nuget-minor-patch: + patterns: ["*"] + update-types: ["minor", "patch"] + ignore: + # HotChocolate 16 is a breaking migration; stay on 15.x for now. + - dependency-name: "HotChocolate*" + update-types: ["version-update:semver-major"] - package-ecosystem: "github-actions" directory: "/" schedule: { interval: "weekly" }