forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
53 lines (53 loc) · 1.59 KB
/
dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: 2
updates:
# ML Requirements.
- package-ecosystem: "pip"
# If we want to add more requirements here (Core, Serve, etc.), then we should
# make additional subdirectories for each one.
directory: "/python/requirements/ml"
schedule:
# Automatic upgrade checks Saturday at 12 AM.
# Dependabot updates can still be manually triggered via Github at any time.
interval: "weekly"
day: "saturday"
# 12 AM
time: "00:00"
# Use Pacific Standard Time.
timezone: "America/Los_Angeles"
commit-message:
prefix: "[air]"
include: "scope"
# Only 5 upgrade PRs open at a time.
open-pull-requests-limit: 5
reviewers:
- "ray-project/ray-tune"
# compat requirements should not be updated
- package-ecosystem: "pip"
directory: "/python/requirements/compat"
commit-message:
prefix: "[air/do-not-merge]"
include: "scope"
ignore: *
open-pull-requests-limit: 0
reviewers:
- "ray-project/ray-tune"
# Data Requirements.
- package-ecosystem: "pip"
directory: "/python/requirements/data_processing"
schedule:
# Automatic upgrade checks Saturday at 12 AM.
# Dependabot updates can still be manually triggered via Github at any time.
interval: "weekly"
day: "saturday"
# 12 AM
time: "00:00"
# Use Pacific Standard Time.
timezone: "America/Los_Angeles"
commit-message:
prefix: "[data]"
include: "scope"
# Only 5 upgrade PRs open at a time.
open-pull-requests-limit: 5
reviewers:
- "scv119"
- "clarkzinzow"