-
Notifications
You must be signed in to change notification settings - Fork 308
/
Copy pathCODEOWNERS
63 lines (57 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
# This is the gitlab code owners file
# lines starting with a `#` will be ignored.
#
# We can specify a default match using wildcards:
# * @default-codeowner
# Rules defined later in the file take precedence over the rules
# defined before.
#
# This will match all files for which the file name ends in `.rb`
# *.rb @ruby-owner
# Files with a `#` can still be accesssed by escaping the pound sign
# \#file_with_pound.rb @owner-file-with-pound
#
# Multiple codeowners can be specified, separated by spaces or tabs
# CODEOWNERS @multiple @code @owners
#
# Both usernames or email addresses can be used to match
# users. Everything else will be ignored. For example this will
# specify `@legal` and a user with email `janedoe@gitlab.com` as the
# owner for the LICENSE file
# LICENSE @legal this_does_not_match janedoe@gitlab.com
#
# Group names can be used to match groups and nested groups to specify
# them as owners for a file
# README @group @group/with-nested/subgroup
#
# Ending a path in a `/` will specify the code owners for every file
# nested in that directory, on any level
# /docs/ @all-docs
#
# Ending a path in `/*` will specify code owners for every file in
# that directory, but not nested deeper. This will match
# `docs/index.md` but not `docs/projects/index.md`
# /docs/* @root-docs
#
# This will make a `lib` directory nested anywhere in the repository
# match
# lib/ @lib-owner
#
# This will only match a `config` directory in the root of the
# repository
# /config/ @config-owner
#
# If the path contains spaces, these need to be escaped like this:
# path\ with\ spaces/ @space-owner
CODEOWNERS @cpmlreef @rainerkern
LICENSE @cpmlreef @rainerkern
#
# Code Ownership for Devops
#
/bin/ @mlreef/devops
/backend/build.gradle @mlreef/devops
#
# Code ownership for frontend
#
#/web/ @mlreef/frontend-group
/web/src/apiConfig.js @andres46 @mlreef/devops