-
Notifications
You must be signed in to change notification settings - Fork 12
/
CODEOWNERS
Validating CODEOWNERS rules...
38 lines (35 loc) · 1.41 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
# Each line represents a rule, followed by a list of members.
# These members are the default owners for all files
# that match the specified pattern.
# The pattern generally follows the same syntax used for
# .gitignore files.
# The last matching rule always wins; those that appear
# lower in the file take precedence over rules that
# appear higher up.
# Specify owners by their username, email,
# or role assignment in the project.
# Examples:
# Member with username "john.smith" and member
# with email "[email protected]" own any JavaScript file
# in the repository
# *.js john.smith [email protected]
# Bob owns all files under "subdir" directory at the repository
# root and all its subdirectories
#/subdir/ Bob
#
# All members who are assigned the Project Collaborator role
# own any file under docs/ directory anywhere in the repository,
# but not further nested files
docs/* "Project Collaborator"
# This file itself is owned by members who are assigned
# the Project Admin role in this project.
CODEOWNERS "Project Admin"
# All members who are assigned the Project Collaborator role
# own any file under / directory anywhere in the repository
/ "Project Collaborator"
# Specific files and folders
.space.kts "Maarten.Balliauw"
src/* "Paul.Everitt" "KhalidAbuhakmeh"
public/* "Paul.Everitt" "KhalidAbuhakmeh"
_includes/* "Paul.Everitt" "KhalidAbuhakmeh"
deployment "Mukul.Mantosh" "Maarten.Balliauw"