-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCODEOWNERS
23 lines (21 loc) · 1018 Bytes
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Lists some code owners.
#
# A codeowner just oversees some part of the codebase. If an owned file is changed then the
# corresponding codeowner receives a review request. An approval of the codeowner is
# not required for merging a PR though.
#
# For details about syntax, see:
# https://help.github.com/en/articles/about-code-owners
# But here are some important notes:
#
# - Glob syntax is git-like, e.g. `/core` means the core directory in the root, unlike `core` which
# can be everywhere.
# - Multiple owners are supported.
# - Either handle (e.g, @team_or_user) or email can be used. Keep in mind, that handles might work better because they
# are more recognizable on GitHub, you can use them for mentioning unlike an email.
# - !IMPORTANT: The latest matching rule, if multiple, takes precedence. Define global rules first! For example
# `* @sample_codeowner` will take precedence over every rule defined before it.
# CI
/.scripts/ @sergejparity
/scripts/ @sergejparity
/.gitlab-ci.yml @sergejparity