-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathCODEOWNERS
17 lines (17 loc) · 936 Bytes
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# The content of the config.rs file should not change in a breaking way.
# See https://github.com/parallaxsecond/parsec/issues/393 for details.
src/utils/config.rs @parallaxsecond/admin
# The content of the cli.rs file should not change in a breaking way.
# See https://github.com/parallaxsecond/parsec/issues/392 for details.
src/utils/cli.rs @parallaxsecond/admin
# The Docker container is also used to check that there are no breaking
# changes in buildtime dependencies.
# See https://github.com/parallaxsecond/parsec/issues/397
# See https://github.com/parallaxsecond/parsec/issues/408
e2e_tests/docker_image/ @parallaxsecond/admin
# The way tests are executed should be only modified carefully to not remove
# regression or breaking changes detection.
ci.sh @parallaxsecond/admin
# The main function file contains interactions with the operating system which must
# stay stable.
src/bin/main.rs @parallaxsecond/admin