From e8f742a319b6d91f1d31a37bbd203dbf78300a12 Mon Sep 17 00:00:00 2001 From: Simon Convent Date: Thu, 19 Jan 2023 02:25:04 +0100 Subject: [PATCH] Add dependabot config (#11328) --- .github/dependabot.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000000..805733a69df --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,15 @@ +version: 2 +updates: + + - package-ecosystem: "maven" + directory: "/" + open-pull-requests-limit: 20 + # Ignore major version updates + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] + schedule: + interval: "weekly" + day: "monday" + time: "03:00" + timezone: "US/Eastern"