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" }