From 7ad2d34725752513eef5588a013701d8adcd8392 Mon Sep 17 00:00:00 2001 From: Jan Rose Date: Tue, 8 Sep 2026 07:46:18 +0000 Subject: [PATCH] Group Databricks Go SDK submodule bumps into a single Dependabot PR The new Databricks Go SDK ships as ~100 per-service submodules under github.com/databricks/sdk-go. Without grouping, Dependabot would open one PR per submodule bump. Add a `groups` block to the root gomod ecosystem so they collapse into a single PR. Co-authored-by: Isaac --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7bb9714a955..ef5476b34c2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,13 @@ updates: interval: "weekly" cooldown: default-days: 14 + groups: + # The new Databricks Go SDK ships as ~100 per-service submodules under + # github.com/databricks/sdk-go. Bumping them individually would open one PR + # per submodule; group them into a single PR. + databricks-sdk-go: + patterns: + - github.com/databricks/sdk-go/* ignore: # Ignore Databricks Go SDK because its upgrade requires code generation - dependency-name: github.com/databricks/databricks-sdk-go