From 3a6621cbe961bc2c3eb8b20c5294966bc4a0517b Mon Sep 17 00:00:00 2001 From: Kanwalpreet Dhindsa Date: Tue, 16 Jul 2024 12:06:40 -0700 Subject: [PATCH] Add dependabot.yml for dependency version updates (#1449) * added dependabot.yml for version updates --- .github/dependabot.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..6809002a9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,36 @@ +version: 2 +updates: + - package-ecosystem: "cargo" + directories: + - "/" + - "/cmd/soroban-cli" + - "/cmd/crates/stellar-ledger" + - "/cmd/crates/soroban-spec-typescript" + - "/cmd/crates/soroban-spec-tools" + - "/cmd/crates/soroban-spec-json" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 2 + groups: + minor-and-patch: + applies-to: version-updates + update-types: + - "patch" + - "minor" + major: + applies-to: version-updates + update-types: + - "major" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 2 + groups: + all-actions: + applies-to: version-updates + patterns: [ "*" ] \ No newline at end of file