From 178e0404c34daf7248f57d806a1785975b7a7bd4 Mon Sep 17 00:00:00 2001 From: Niels Pardon Date: Wed, 17 Jun 2026 10:00:33 +0200 Subject: [PATCH] ci: expand dependabot config to cover uv and docker Adds dependabot coverage for Python dependencies (uv ecosystem) and the devcontainer Dockerfile (docker ecosystem) alongside the existing github-actions updates. All ecosystems use conventional-commit prefixes so generated PRs pass the PR title check, and the version-pinned substrait-protobuf/substrait-antlr/substrait-extensions packages are grouped into a single PR. --- .github/dependabot.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5ace460..5dd1749 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,28 @@ updates: directory: "/" schedule: interval: "weekly" + commit-message: + prefix: "chore" + include: "scope" + + - package-ecosystem: "uv" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "chore" + include: "scope" + groups: + substrait: + patterns: + - "substrait-protobuf" + - "substrait-antlr" + - "substrait-extensions" + + - package-ecosystem: "docker" + directory: "/.devcontainer" + schedule: + interval: "weekly" + commit-message: + prefix: "chore" + include: "scope"