From 0f5d36ce5e82bbef76023e234c3019f13ba5a378 Mon Sep 17 00:00:00 2001 From: Amog Kamsetty Date: Thu, 7 Jan 2021 16:33:02 -0800 Subject: [PATCH] [Dependabot] Add Dependabot (#13278) Co-authored-by: Ian --- .github/dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..f46e7c2e8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,21 @@ +version: 2 +updates: + # Tune/SGD/Doc requirements + - package-ecosystem: "pip" + # The requirements base directory currently only contains tune requirements. + # If we want to add more requirements here (Core, RLlib, etc.), then we should make subdirectories for each one. + directory: "/python/requirements" + schedule: + # TODO(amogkam) change this to weekly after some initial validation. + interval: "daily" + # 8 PM + time: "20:00" + # Use Pacific Standard Time + timezone: "America/Los_Angeles" + commit-message: + prefix: "[tune]" + include: "scope" + # Only 3 upgrade PRs at a time. + open-pull-requests-limit: 3 + reviewers: + - "ray-project/ray-tune"