From f5bfdef623d1944715b27085b427d6de4c7563ec Mon Sep 17 00:00:00 2001 From: kulayddon Date: Thu, 27 Aug 2026 15:49:31 +0100 Subject: [PATCH] ci: add Dependabot config for cargo, npm, and github-actions Keeps soroban-sdk (cargo) and @stellar/stellar-sdk (npm) in sync via weekly grouped update PRs, plus github-actions dependency updates. Closes #133 Closes #134 Closes #135 Closes #136 --- .github/dependabot.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4dd4e53 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,30 @@ +version: 2 +updates: + # Rust workspace — keeps soroban-sdk (and other crates.io deps) current. + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + groups: + soroban-sdk: + patterns: + - "soroban-sdk" + - "soroban-*" + + # Deploy/invoke helper scripts — keeps @stellar/stellar-sdk current. + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + groups: + stellar-sdk: + patterns: + - "@stellar/stellar-sdk" + + # GitHub Actions used by CI. + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"