From ebc0f041fb109cf88aa44fb832c7d2c38e22c71a Mon Sep 17 00:00:00 2001 From: Jeremiah Jacob Date: Mon, 22 Jun 2026 20:05:44 +0100 Subject: [PATCH] chore: add Dependabot automation --- .github/dependabot.yml | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..c5ae745 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,50 @@ +version: 2 + +updates: + - package-ecosystem: "pub" + directory: "/" + schedule: + interval: "weekly" + groups: + root-pub-minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + + - package-ecosystem: "pub" + directory: "/bdk_demo" + schedule: + interval: "weekly" + groups: + demo-pub-minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + + - package-ecosystem: "cargo" + directory: "/native" + schedule: + interval: "weekly" + groups: + cargo-minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + actions-minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch"