[Dependabot] Add Dependabot (#13278)

Co-authored-by: Ian <ian.rodney@gmail.com>
This commit is contained in:
Amog Kamsetty 2021-01-07 16:33:02 -08:00 committed by GitHub
parent 43f70faa25
commit 0f5d36ce5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
.github/dependabot.yml vendored Normal file
View file

@ -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"