From 45280051d6367c8637d1d8ba6b1c61f94cb25d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= <765740+giordano@users.noreply.github.com> Date: Mon, 2 Jun 2025 00:55:44 +0100 Subject: [PATCH] [CI] Group dependabot PRs (#341) --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9a8e374..b2ef14e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,15 +5,30 @@ updates: schedule: interval: monthly open-pull-requests-limit: 99 + groups: + # Group all Git submodules PRs into a single PR: + all-gitsubmodule-actions: + patterns: + - "*" - package-ecosystem: 'github-actions' directory: '/' schedule: interval: 'monthly' open-pull-requests-limit: 99 + groups: + # Group all GitHub Actions PRs into a single PR: + all-github-actions: + patterns: + - "*" - package-ecosystem: npm directory: "/" schedule: interval: monthly open-pull-requests-limit: 99 + groups: + # Group all NPM PRs into a single PR: + all-npm-actions: + patterns: + - "*"