From ea916a33868e5c0a178593f01e881e748694af70 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 26 Mar 2025 14:25:05 +0100 Subject: [PATCH] Exclude repo-config from dependabot grouping This dependency usually need manual intervention to update, so it's better to exclude it from the grouping, which usually blocks merging until the manual intervention happens. Signed-off-by: Leandro Lucarella --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 432e1191..317f3637 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,6 +19,10 @@ updates: # Major updates are still managed, but they'll create one PR per # dependency, as major updates are expected to be breaking, it is better to # manage them individually. + # We exclude the `frequenz-repo-config` package from grouping as this + # dependency is still under development (at branch v0.x.x), so minor + # changes typically introduce breaking changes (and patch updates can + # potentially too according to semver). groups: required: dependency-type: "production" @@ -26,6 +30,7 @@ updates: - "minor" - "patch" exclude-patterns: + - "frequenz-repo-config" - "frequenz-client-base*" - "frequenz-api-microgrid" optional: @@ -34,6 +39,7 @@ updates: - "minor" - "patch" exclude-patterns: + - "frequenz-repo-config" - "frequenz-client-base*" - "frequenz-api-microgrid" in-devel-patch: