-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
58 lines (45 loc) · 2.06 KB
/
CODEOWNERS
File metadata and controls
58 lines (45 loc) · 2.06 KB
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
# DOCUMENTATION
# Each line is a file pattern followed by one or more owners (@github_username).
# Global owners. Later matches override earlier ones, i.e these owners would not be requested for review if other owners are matched down below.
# Example: * @owner1 @owner2
# This owner will be the default owner for every .js file in the repository. @owner1 and @owner2 would not be requested for review.
# Example: *.js @js-owner
# 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.
# Example: *.txt @octo-org/octocats
# In this example, @owner1 owns any files in the build/logs
# directory at the root of the repository and any of its
# subdirectories.
# Example: /build/logs/ @owner1
# The `docs/*` pattern will match files like
# `docs/getting-started.md` but not further nested files like
# `docs/build-app/troubleshooting.md`.
#Example: docs/* @owner1
# In this example, @owner1 owns any file in an apps directory
# anywhere in your repository.
#Example: apps/ @owner1
# In this example, @owner1 owns any file in the `/docs`
# directory in the root of your repository and any of its
# subdirectories.
#Example: /docs/ @owner1
# In this example, any change inside the `/scripts` directory
# will require approval from @owner1 or @owner2.
# Example: /scripts/ @owner1 @owner2
# In this example, @owner1 owns any file in a `/logs` directory such as
# `/build/logs`, `/scripts/logs`, and `/deeply/nested/logs`. Any changes
# in a `/logs` directory will require approval from @owner1.
#Example: **/logs @owner1
# In this example, @owner1 owns any file in the `/apps`
# directory in the root of your repository except for the `/apps/github`
# subdirectory, as its owners are left empty.
# Example:
# /apps/ @owner1
# /apps/github
# In this example, @owner1 owns any file in the `/apps`
# directory in the root of your repository except for the `/apps/github`
# subdirectory, as this subdirectory has its own owner @owner2
# Example:
# /apps/ @owner1
# /apps/github @owner2
# START