From 128c7ace1c0013308fb2815f21d35bf0cfae7638 Mon Sep 17 00:00:00 2001 From: David Leong Date: Sat, 22 Aug 2026 01:46:49 +0000 Subject: [PATCH] ci: Add cargo to dependabot so openjd-rs releases open their own PR Signed-off-by: David Leong --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 22747bee..c995c26b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,6 +25,25 @@ updates: update-types: - "minor" - "patch" + - package-ecosystem: "cargo" + directory: "/" # Workspace root; rust-bindings is discovered as a member + schedule: + interval: "weekly" + day: "monday" + commit-message: + prefix: "chore(deps):" + # Patch bumps are combined into a single PR. Minor bumps do not match this + # group and so each get their own individual PR, because every crate this + # package depends on is pre-1.0: for a 0.x crate cargo treats a minor bump + # as breaking, so openjd-expr 0.3 -> 0.4 deserves its own review rather + # than riding along with a patch. + groups: + cargo-patch: + patterns: + - "*" + update-types: + - "patch" + - package-ecosystem: "github-actions" directory: "/" # Location of package manifests schedule: