From c714710931f34a1434eff2ddeae395aa29cf37d5 Mon Sep 17 00:00:00 2001 From: ChristophShyper <45788587+ChristophShyper@users.noreply.github.com> Date: Tue, 12 May 2026 19:33:20 +0200 Subject: [PATCH] feat: group GitHub Actions and Docker updates in dependabot configuration --- .github/dependabot.yml | 44 ++++++++++++++++++++++++++++++------------ 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e78e16f..65ee80e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,28 +1,48 @@ version: 2 updates: - # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" + - package-ecosystem: github-actions directory: "/" schedule: - interval: "daily" + interval: weekly + assignees: + - ChristophShyper + labels: + - automatic + groups: + gha-all: + patterns: + - "*" - # Enable version updates for Docker - - package-ecosystem: "docker" + - package-ecosystem: docker directory: "/" schedule: - interval: "daily" + interval: weekly assignees: - - "ChristophShyper" + - ChristophShyper labels: - automatic + groups: + docker-base-images: + patterns: + - "*" - - # Enable version updates for pip - - package-ecosystem: "pip" + - package-ecosystem: pip directory: "/" schedule: - interval: "daily" + interval: weekly assignees: - - "ChristophShyper" + - ChristophShyper labels: - automatic + groups: + pip-patch-minor: + patterns: + - "*" + update-types: + - minor + - patch + pip-major: + patterns: + - "*" + update-types: + - major