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: + - "*"