-
Notifications
You must be signed in to change notification settings - Fork 128
/
CODEOWNERS
Validating CODEOWNERS rules...
38 lines (29 loc) · 1.25 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
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
# Email addresses or GitHub usernames can be used
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# these global owners will be requested for
# review when someone opens a pull request.
* @jmstone @tomidakn
# Order is important; the last matching pattern takes the most
# precedence. When someone opens a pull request that only
# modifies reconstruct/ files, only @kfelker and not the global
# owner(s) will be requested for a review.
src/reconstruct/ @felker @jmstone
src/task_list/time_integrator.cpp @felker @jmstone
src/gravity/ @changgoo @jmstone
src/fft/ @changgoo @jmstone
# Only request @tomidakn, not @jmstone for PR affecting these folders
src/bvals/ @tomidakn @jmstone
src/mesh/ @tomidakn @jmstone
src/multigrid/ @tomidakn @jmstone
vis/ @c-white @jmstone
# dir/* syntax will not match files in subfolders
src/eos/*gr* @c-white @jmstone
src/eos/*sr* @c-white @jmstone
src/pgen/gr_* @c-white @jmstone
# Any file in any coordinates/ directory throughout repo
coordinates/ @c-white @tomidakn @jmstone
# Any file in /tst/regression/ in root of repo
/tst/regression/ @c-white @felker @jmstone