CODEOWNERS Git file

?
S
Markup

Code owners are automatically requested for review when someone opens a pull request that modifies code that they own. Order is important; the last matching pattern takes the most precedence. It must be placed on the /, docs/, or .github/ directory of the repository.

1# Each line is a file pattern followed by one or more owners.
2
3# Default owners for everything in the repo. Unless a later match takes precedence,
4*       @global-owner1 @global-owner2
5
6*.js    @js-owner
7
8*.go docs@example.com
9
10/build/logs/ @doctocat
11
12# One level only, not nested
13docs/*  docs@example.com
14
15# Any level inside apps, any file
16apps/ @octocat
17
18# Any level inside /docs/, any file
19/docs/ @doctocat

Created on 5/10/2018