-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
CODEOWNERS
Validating CODEOWNERS rules...
30 lines (23 loc) · 1.09 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
# Each line is a file pattern followed by one or more owners.
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @global-owner1 @global-owner2
# Order is important; the last matching pattern takes the most
# precedence. When someone opens a pull request that only
# modifies JS files, only @js-owner and not the global
# owner(s) will be requested for a review.
*.js @sulstice
# Teams can be specified as code owners as well. Teams should
# be identified in the format @org/team-name. Teams must have
# explicit write access to the repository. In this example,
# the octocats team in the octo-org organization owns all .txt files.
*.txt @sulstice
# In this example, @octocat owns any file in an global_chem* directory
# anywhere in your repository.
global_chem/ @sulstice
global_chem_extensions/ @sulstice
# In this example, any change inside the `/scripts` directory
# will require approval from @doctocat or @octocat.
front_end/ @sulstice