-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCODEOWNERS
45 lines (38 loc) · 1.42 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
# The following filepaths should be sorted so that more specific paths occur
# after the less specific paths, otherwise the ownership for the specific paths
# is not properly picked up in Github.
# 设置一个 缺省 owner,越是在文件后边匹配到的规则,优先级最高
# Order is important; the last matching pattern takes the most precedence
* @weizhoublue
# will require approval from @doctocat or @octocat. 这个应该是 github 账号名
/cmd/ @weizhoublue1 @weizhoublue2
/.gitignore @weizhoublue
/CODEOWNERS @weizhoublue
/README.md @weizhoublue
/go.mod @weizhoublue
/VERSION @weizhoublue
/vendor @weizhoublue
/Makefile* @weizhoublue
/go.sum @weizhoublue
# 匹配任意层级目录下的 go 文件
# also use email addresses if you prefer
*.go [email protected]
# 如下写法,匹配目录下的所有子目录层级的任意文件
# github 的 Teams ,can be specified as code owners as well, in the format @org/team-name
/cmd/ @@octo-org/octocats
# 如下写法,匹配目录下的第一个目录层级的任意文件
/cmd/* @doctocat
# 如下写法,会匹配工程下任意目录下的 cmd 目录中的 所有层级的文件
cmd/ @octocat
/.github/ @lou-lan
/images/ @weizhoublue
/charts/ @weizhoublue
/docs/ @weizhoublue
/contrib/ @weizhoublue
/api/ @weizhoublue
/pkg/ @weizhoublue
/tools/ @weizhoublue
/test/ @weizhoublue
/AUTHORS @weizhoublue
/ginkgo.sh @weizhoublue
/.licenserc.yaml @weizhoublue