-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCODEOWNERS
More file actions
46 lines (37 loc) · 3.03 KB
/
Copy pathCODEOWNERS
File metadata and controls
46 lines (37 loc) · 3.03 KB
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
39
40
41
42
43
44
45
46
# CODEOWNERS
# Each line defines a pattern and the owner(s) responsible for reviewing changes.
# The last matching rule takes precedence.
# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# ─── Global fallback ────────────────────────────────────────────────────────
# Only @ismoy can approve PRs. Collaborators are listed as reviewers for visibility.
* @ismoy
# ─── Core library (common) ──────────────────────────────────────────────────
/library/src/commonMain/ @ismoy
/library/src/commonTest/ @ismoy
# ─── Android ────────────────────────────────────────────────────────────────
/library/src/androidMain/ @ismoy
/library/src/androidTest/ @ismoy
/library/src/androidAndroidTest/ @ismoy
# ─── iOS ────────────────────────────────────────────────────────────────────
/library/src/iosMain/ @ismoy
/library/src/iosTest/ @ismoy
# ─── Desktop (JVM) ──────────────────────────────────────────────────────────
/library/src/jvmMain/ @ismoy
/library/src/jvmTest/ @ismoy
# ─── Web (JS / Wasm) ────────────────────────────────────────────────────────
/library/src/jsMain/ @ismoy
/library/src/wasmJsMain/ @ismoy
# ─── Build & CI ─────────────────────────────────────────────────────────────
*.gradle.kts @ismoy
/gradle/ @ismoy
/.github/workflows/ @ismoy
/gradle.properties @ismoy
/settings.gradle.kts @ismoy
# ─── Documentation ──────────────────────────────────────────────────────────
/docs/ @ismoy
README.md @ismoy
README.es.md @ismoy
# ─── Security ───────────────────────────────────────────────────────────────
/.github/SECURITY.md @ismoy
/docs/SECURITY.md @ismoy
/docs/SECURITY.es.md @ismoy