From 6b57bb0c074c18cca1755e995d972c339e6d9207 Mon Sep 17 00:00:00 2001 From: Kanwalpreet Dhindsa Date: Tue, 13 Aug 2024 22:56:45 -0700 Subject: [PATCH] add dependabot.yml for version updates --- .github/dependabot.yml | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..767440a866 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,43 @@ +version: 2 +updates: + - package-ecosystem: "cargo" + directories: + - "/" + - "/src/rust" + 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: "/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