From 8d3926b3f9d1e15e735d6f16aa920dd5a48078b1 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Wed, 22 Jul 2026 07:52:29 +0200 Subject: [PATCH] ci: group Dependabot uv and GitHub Actions updates Stop Dependabot opening one PR per dependency by grouping uv and GitHub Actions updates into fewer PRs per ecosystem. Co-authored-by: Cursor AI Co-authored-by: Cursor Grok 4.5 --- .github/dependabot.yaml | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 5ace4600..edd0bf1e 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -1,6 +1,20 @@ version: 2 updates: - - package-ecosystem: "github-actions" - directory: "/" + - package-ecosystem: github-actions + directory: / schedule: - interval: "weekly" + interval: weekly + groups: + github-actions: + patterns: ["*"] + + - package-ecosystem: uv + directory: / + schedule: + interval: weekly + groups: + python: + patterns: ["*"] + python-security: + applies-to: security-updates + patterns: ["*"]