From fb2a5054bc57581c2a525e1af0a42d5de9f3637f Mon Sep 17 00:00:00 2001 From: Arnei Date: Thu, 9 Jan 2025 09:44:13 +0100 Subject: [PATCH] Group minor dependabot updates The goal of this patch is to make the monthly reviewing of dependency prs more efficient. It causes dependabot to group all minor and patch dependency updates into a single pull request. The reasoning is that minor updates are highly unlikely to cause our app to break or change and thus time can be saved by testing them all at once instead of individually. Inspired by Opencast studio: https://github.com/elan-ev/opencast-studio/blob/master/.github/dependabot.yml --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f36198cf87..e5e0e0c0b2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,3 +17,8 @@ updates: open-pull-requests-limit: 15 labels: - type:dependencies + groups: + minor-and-patch: + update-types: + - minor + - patch