-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCODEOWNERS
More file actions
21 lines (16 loc) · 611 Bytes
/
CODEOWNERS
File metadata and controls
21 lines (16 loc) · 611 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# CODEOWNERS defines who is responsible for reviewing and approving changes
# to specific files or directories in this repository. GitHub automatically
# requests reviews from the listed owners when a pull request modifies
# matching paths. Rules are evaluated in order, with the last matching rule
# taking precedence.
# Default owner for everything not matched by a more specific rule
* @coreydaley
# Source code
src/ @coreydaley
# Build configuration
build.gradle.kts @coreydaley
settings.gradle.kts @coreydaley
# GitHub configuration and workflows
.github/ @coreydaley
# Examples
examples/ @coreydaley