From 43c01bab104e9ffda5b0cebac5d4e1a44a44eda4 Mon Sep 17 00:00:00 2001 From: Lukas Piwowarski Date: Thu, 23 Jul 2026 17:20:53 +0200 Subject: [PATCH] Add dependabot config for github-actions Enable weekly dependabot updates (saturday) for github-actions, grouping all updates into a single PR instead of one PR per dependency. Group Python updates into separate patch and minor dependency groups, each producing a single PR (less PRs). Co-Authored-By: Claude Sonnet 4.6 --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4f1114b..fb23866 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,4 +4,27 @@ updates: directory: "/" schedule: interval: "weekly" + day: "saturday" + groups: + patch-dependencies: + patterns: + - "*" + update-types: + - "patch" + + minor-dependencies: + patterns: + - "*" + update-types: + - "minor" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "saturday" + groups: + github-actions-all: + patterns: + - "*"