From 8dbfb749c43a8198aeef307c368d7b83f90c47c4 Mon Sep 17 00:00:00 2001 From: Alex Dewar Date: Wed, 29 Apr 2026 13:21:47 +0100 Subject: [PATCH] Group dependabot PRs together As we've done elsewhere, group dependabot PRs to reduce the number of PRs created. I've made two groups, one for Python deps and another for GitHub Actions. Closes #58. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b406f0f..09c1ad9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,13 @@ updates: directory: / schedule: interval: weekly + groups: + python: + patterns: ['*'] - package-ecosystem: github-actions directory: / schedule: interval: weekly + groups: + github-actions: + patterns: ['*']