From 572e4cd3654300c558884c91fb968e3a8e6ba821 Mon Sep 17 00:00:00 2001 From: Jonathan Buch Date: Thu, 10 Oct 2024 11:48:27 +0200 Subject: [PATCH] dependabot, combine PRs * To simplify maintenance, group all PRs --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 15508f2..097cd51 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,12 @@ updates: labels: - "dependencies" - "javascript" + groups: + # Group all updates together, so that they are all applied in a single PR. + # xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups + node: + patterns: + - "*" - package-ecosystem: "gomod" directory: "/" @@ -15,6 +21,12 @@ updates: labels: - "dependencies" - "go" + groups: + # Group all updates together, so that they are all applied in a single PR. + # xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups + go: + patterns: + - "*" - package-ecosystem: "github-actions" directory: "/" @@ -23,3 +35,9 @@ updates: labels: - "dependencies" - "github_actions" + groups: + # Group all updates together, so that they are all applied in a single PR. + # xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups + ci: + patterns: + - "*"