From 8230af2e1fe7c5ff228be2b80b41480f60f80b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Garn=C3=A6s?= Date: Tue, 10 Oct 2023 10:16:58 +0200 Subject: [PATCH] Group dependabot updates for certain vendors We use many packages from Storybook, GraphQL Codegen and Babel. These are often updated in parallel and may have dependencies between them. Thus is makes sense to group these updates of these packages in Dependabot to ensure that we get an update to e.g. Storybook 7, GraphQL Codegen 5, Babel 8 in the same pull request --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5a8610f413..5f8143fb0e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,3 +17,13 @@ updates: timezone: Europe/Copenhagen labels: - dependencies + groups: + babel: + patterns: + - "@babel/*" + graphql-codegen: + patterns: + - "@graphql-codegen/*" + storybook: + patterns: + - "@storybook/*"