From a3560d7f7e0a8fb605b541944e6ac3e91f3a9a1e Mon Sep 17 00:00:00 2001 From: Juan Jose Nicola Date: Tue, 19 Sep 2023 10:54:45 +0200 Subject: [PATCH] Change: Group Dependabot updates into single PR This groups multiple dependency updates into a single pull request when they are submitted by Dependabot. The ability to process dependency updates through a single pull request reduces the workload for repository maintenance. See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups for details on this functionality. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 50c00d00..4df9e7cf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,9 +5,17 @@ updates: schedule: interval: weekly time: "04:00" + groups: + python-packages: + patterns: + - "*" open-pull-requests-limit: 10 - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" + groups: + github-actions: + patterns: + - "*"