forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CODEOWNERS
Validating CODEOWNERS rules...
51 lines (36 loc) · 1.24 KB
/
CODEOWNERS
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
# Each line is a file pattern followed by one or more owners.
# See https://help.github.com/articles/about-codeowners/
# for more info about CODEOWNERS file
# It uses the same pattern rule for gitignore file,
# see https://git-scm.com/docs/gitignore#_pattern_format.
# ==== Ray default ====
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @BonsaiAI/ray-code-owners will be requested for
# review when someone opens a pull request.
* @BonsaiAI/ray-code-owners
# ==== Ray core ====
# All C++ code.
/src/ray @BonsaiAI/ray-maintainers
# Python worker.
/python/ray/ @BonsaiAI/ray-maintainers
!/python/ray/tune/ @BonsaiAI/ray-maintainers
!/python/ray/rllib/ @BonsaiAI/ray-maintainers
# Java worker.
/java/ @BonsaiAI/ray-maintainers
# Kube Operator.
/deploy/ @BonsaiAI/ray-maintainers
# ==== Libraries and frameworks ====
# Ray tune.
/python/ray/tune/ @BonsaiAI/ray-code-owners
# RLlib.
/python/ray/rllib/ @BonsaiAI/ray-code-owners
/rllib/ @BonsaiAI/ray-code-owners
# ==== Build and CI ====
# Bazel.
/BUILD.bazel @BonsaiAI/ray-code-owners
/WORKSPACE @BonsaiAI/ray-code-owners
/bazel/ @BonsaiAI/ray-code-owners
# CI scripts.
/.travis.yml @BonsaiAI/ray-maintainers
/ci/ @BonsaiAI/ray-maintainers