From 32fde57f444c346fdfa26c0fadeee61a549114d9 Mon Sep 17 00:00:00 2001 From: Eposs Date: Sun, 19 Jul 2026 18:42:33 +0200 Subject: [PATCH] Group version updates in Dependabot configuration by type (minor, patch, major) --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4b37d96..6468bd0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,13 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" + groups: + minor-and-patch: + applies-to: version-updates + update-types: + - "minor" + - "patch" + major: + applies-to: version-updates + update-types: + - "major" \ No newline at end of file