From bdda255b6411b05171984866dc147a2bc6c513c8 Mon Sep 17 00:00:00 2001 From: Kanwalpreet Dhindsa Date: Fri, 12 Jul 2024 16:07:53 -0700 Subject: [PATCH] added dependabot.yml for version updates --- .github/dependabot.yml | 58 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..ffb537c5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,58 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 2 + groups: + go-minor-and-patch: + applies-to: version-updates + update-types: + - "patch" + - "minor" + go-major: + applies-to: version-updates + update-types: + - "major" + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 2 + groups: + cargo-minor-and-patch: + applies-to: version-updates + update-types: + - "patch" + - "minor" + cargo-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: [ "*" ] + - package-ecosystem: "docker" + directory: "/cmd/soroban-rpc/docker" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 2 + groups: + all-docker: + applies-to: version-updates + patterns: [ "*" ] \ No newline at end of file