From b7cfae13e1e8d891b6fcee2c209f124d3b571c92 Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Mon, 25 Dec 2023 20:18:22 +0000 Subject: [PATCH] feat(CI/dependabot): Group Dependabot PRs To reduce maintainer workload, I've made this PR for Dependabot to automatically group related PRs together into one PR. We could also enable a workflow to automatically merge Dependabot PRs, on the condition that the code continues to compile and produce a unified RSS XML feed. Signed-off-by: Dom Rodriguez --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f7e48cb..73c4914 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,8 +4,16 @@ updates: directory: "/" schedule: interval: "weekly" + groups: + gh-actions-deps: + patterns: + - "*" - package-ecosystem: "pip" directory: "/" schedule: interval: "weekly" + groups: + python-deps: + patterns: + - "*"