From db5ccee1eeb7d8dd490331b35f4912664ff7a05d Mon Sep 17 00:00:00 2001 From: Alain Kaeslin Date: Fri, 9 Jan 2026 09:23:54 +0100 Subject: [PATCH] Configure dependabot to group GitHub Actions updates into a single PR. --- .github/dependabot.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 48ac80f..88fa0d0 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -4,6 +4,14 @@ updates: directory: "/" schedule: interval: "daily" + # Group all GitHub Action updates into a single PR, ignoring minor/patch + # this seems to be the most pragmatic approach for this repo, given that + # we only have a single workflow so far. + groups: + github-actions: + applies-to: version-updates + patterns: + - "*" ignore: - dependency-name: "*" update-types: ["version-update:semver-minor", "version-update:semver-patch"]