From d611eb202200393086505ecbb5c6edac4d093af4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Sch=C3=A4fer?= Date: Sun, 7 Jun 2026 11:02:22 +0200 Subject: [PATCH] chore(dependabot): limit grouped dependency updates to one PR per ecosystem --- .github/dependabot.yml | 36 ++++++++++++++---------------------- 1 file changed, 14 insertions(+), 22 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a83949b..aa13572 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,40 +1,32 @@ version: 2 + updates: - package-ecosystem: "gomod" directory: "/" schedule: interval: "daily" + open-pull-requests-limit: 1 groups: - dev-patch-updates: - dependency-type: "development" - update-types: - - "patch" - dev-minor-updates: - dependency-type: "development" - update-types: - - "minor" - prod-patch-updates: - dependency-type: "production" - update-types: - - "patch" - prod-minor-updates: - dependency-type: "production" - update-types: - - "minor" + go-dependencies: + patterns: + - "*" - package-ecosystem: "docker" directory: "/" schedule: interval: "daily" + open-pull-requests-limit: 1 groups: - patch-updates: - update-types: - - "patch" - minor-updates: - update-types: - - "minor" + docker-dependencies: + patterns: + - "*" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" + open-pull-requests-limit: 1 + groups: + github-actions-dependencies: + patterns: + - "*"