-
Notifications
You must be signed in to change notification settings - Fork 521
/
CODEOWNERS
Validating CODEOWNERS rules...
329 lines (254 loc) · 18.4 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
################################################################################
# IMPORTANT NOTES FOR CODEOWNERS: #
# #
# - If you will be unavailable for more than 24 hours, please do all of the #
# following: #
# (a) Make sure there are other folks on your codeowner team. #
# (b) Send a note to them and make sure they can cover your reviews while #
# absent, and tell them when you'll be back. Please include @BenHenning, #
# @seanlip, and @adhiamboperes on that note. #
# (c) Update your GitHub status to "busy" to make sure you don't get #
# reviews. #
# (d) When you're back, change your status back so that you get new reviews. #
# #
# - The order of ownership below matters. The later line always takes #
# precedence, so broad ownership (e.g. directory-based) should be listed #
# first and more narrow ownership (e.g. name-based) should be lasted later. #
# #
################################################################################
# ---=============================== MODULES ==============================--- #
################################################################################
# app module #
################################################################################
# All app code files.
/app/**/*.kt @oppia/android-frontend-reviewers
/app/**/*.java @oppia/android-frontend-reviewers
# All app resource files.
/app/src/main/res/**/*.xml @oppia/android-frontend-reviewers
# Exemptions to resource shrinking.
/app/src/main/res/raw/shrink_exemptions.xml @oppia/android-dev-workflow-reviewers
################################################################################
# data module #
################################################################################
# All data module code.
/data/**/*.kt @oppia/android-app-infrastructure-reviewers
# Test networking assets.
/data/src/test/assets/ @oppia/android-app-infrastructure-reviewers
################################################################################
# domain module #
################################################################################
# All domain module code.
/domain/**/*.kt @oppia/android-app-infrastructure-reviewers
# Lesson assets.
/domain/src/main/assets/ @oppia/android-app-infrastructure-reviewers
################################################################################
# Instrumentation #
################################################################################
# End-to-end test utilities and modules (experimental currently).
/instrumentation/**/*.kt @oppia/android-dev-workflow-reviewers
/instrumentation/src/*/AndroidManifest.xml @oppia/android-dev-workflow-reviewers
################################################################################
# model module #
################################################################################
# All protos shared between the domain and app layers.
/model/ @oppia/android-app-infrastructure-reviewers
################################################################################
# testing module #
################################################################################
# All general-purpose shared test infrastructure.
/testing/src/main/java/org/oppia/android/testing/AssertionHelpers.kt @oppia/android-dev-workflow-reviewers
/testing/src/main/java/org/oppia/android/testing/OppiaTestAnnotations.kt @oppia/android-dev-workflow-reviewers
/testing/src/main/java/org/oppia/android/testing/OppiaTestRule.kt @oppia/android-dev-workflow-reviewers
/testing/src/main/java/org/oppia/android/testing/OppiaTestRunner.kt @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/data/ @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/environment/ @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/junit/ @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/mockito/ @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/platformparameter/ @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/robolectric/ @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/threading/ @oppia/android-dev-workflow-reviewers
/testing/src/*/java/org/oppia/android/testing/time/ @oppia/android-dev-workflow-reviewers
# All domain and utility-specific shared test infrastructure.
/testing/src/main/java/org/oppia/android/testing/FakeAnalyticsEventLogger.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/FakeExceptionLogger.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/FakeFirebaseAuthInstanceWrapperImpl.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/FakeFirestoreEventLogger.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/FakeFirestoreInstanceWrapperImpl.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/FakePerformanceMetricAssessor.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/FakePerformanceMetricsEventLogger.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/TestImageLoaderModule.kt @oppia/android-app-infrastructure-reviewers
/testing/src/main/java/org/oppia/android/testing/TestLogReportingModule.kt @oppia/android-app-infrastructure-reviewers
/testing/src/test/java/org/oppia/android/testing/FakeAnalyticsEventLoggerTest.kt @oppia/android-app-infrastructure-reviewers
/testing/src/test/java/org/oppia/android/testing/FakeExceptionLoggerTest.kt @oppia/android-app-infrastructure-reviewers
/testing/src/test/java/org/oppia/android/testing/FakeFirestoreEventLoggerTest.kt @oppia/android-app-infrastructure-reviewers
/testing/src/test/java/org/oppia/android/testing/FakePerformanceMetricAssessorTest.kt @oppia/android-app-infrastructure-reviewers
/testing/src/test/java/org/oppia/android/testing/FakePerformanceMetricsEventLoggerTest.kt @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/firebase/ @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/lightweightcheckpointing/ @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/logging/ @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/math/ @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/network/ @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/networking/ @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/profile/ @oppia/android-app-infrastructure-reviewers
/testing/src/*/java/org/oppia/android/testing/story/ @oppia/android-app-infrastructure-reviewers
# All app-specific shared test infrastructure.
/testing/src/main/AndroidManifest.xml @oppia/android-frontend-reviewers
/testing/src/main/java/org/oppia/android/testing/DisableAccessibilityChecks.kt @oppia/android-frontend-reviewers
/testing/src/main/java/org/oppia/android/testing/RichTextViewMatcher.kt @oppia/android-frontend-reviewers
/testing/src/main/java/org/oppia/android/testing/TextInputActionTestActivity.kt @oppia/android-frontend-reviewers
/testing/src/*/java/org/oppia/android/testing/espresso/ @oppia/android-frontend-reviewers
################################################################################
# Scripts #
################################################################################
# Covers all scripts in the codebase which are used for developer infrastructure,
# build infrastructure, CI checks, and more.
/scripts/ @oppia/android-dev-workflow-reviewers
################################################################################
# third_party module #
################################################################################
# Third-party configurations and infrastructure (not covered elsewhere).
/third_party/ @oppia/android-dev-workflow-reviewers
################################################################################
# utility module #
################################################################################
# Utilities that support central developer workflow infrastructure.
/utility/src/*/java/org/oppia/android/util/platformparameter/ @oppia/android-dev-workflow-reviewers
/utility/src/*/java/org/oppia/android/util/system/ @oppia/android-dev-workflow-reviewers
/utility/src/*/java/org/oppia/android/util/threading/ @oppia/android-dev-workflow-reviewers
# Utilities needed by the domain layer of the app.
/utility/src/*/java/org/oppia/android/util/caching/ @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/data/ @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/gcsresource/ @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/locale/ @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/logging/ @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/math/ @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/networking/ @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/parser/image @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/parser/math @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/parser/svg @oppia/android-app-infrastructure-reviewers
/utility/src/*/java/org/oppia/android/util/profile/ @oppia/android-app-infrastructure-reviewers
/utility/src/test/res/values/strings.xml @oppia/android-app-infrastructure-reviewers
# Utilities that are primarily used for frontend/UI purposes.
/utility/src/*/java/org/oppia/android/util/accessibility/ @oppia/android-frontend-reviewers
/utility/src/*/java/org/oppia/android/util/statusbar/ @oppia/android-frontend-reviewers
/utility/src/*/java/org/oppia/android/util/extensions/ @oppia/android-frontend-reviewers
/utility/src/*/java/org/oppia/android/util/parser/html @oppia/android-frontend-reviewers
/utility/src/*/res/**/*.xml @oppia/android-frontend-reviewers
################################################################################
# Wiki #
################################################################################
# Wiki pages are shared among all owners.
/wiki/ @oppia/owners @oppia/android-app-infrastructure-reviewers @oppia/android-dev-workflow-reviewers @oppia/android-frontend-reviewers
# ---====================== REPOSITORY CONFIGURATIONS =====================--- #
################################################################################
# Git/GitHub configurations #
################################################################################
# Top-level Git configuration files that should only be changed after careful
# consideration.
/.gitignore @oppia/owners
# Repository-wide configurations and documentation that should only be changed
# after careful consideration.
/.github/CODE_OF_CONDUCT.md @oppia/owners
/.github/CONTRIBUTING.md @oppia/owners
/.github/README.md @oppia/owners
# Top-level GitHub configuration files.
/.github/PULL_REQUEST_TEMPLATE.md @oppia/android-dev-workflow-reviewers
/.github/DISCUSSION_TEMPLATE/ @oppia/android-dev-workflow-reviewers
/.github/ISSUE_TEMPLATE/ @oppia/android-dev-workflow-reviewers
################################################################################
# Continuous integration configurations #
################################################################################
/.github/actions/ @oppia/android-dev-workflow-reviewers
/.github/workflows/ @oppia/android-dev-workflow-reviewers
/.github/stale.yml @oppia/android-dev-workflow-reviewers
/.devbots/ @oppia/android-dev-workflow-reviewers
################################################################################
# Third-party dependencies & licenses configurations #
################################################################################
# The list of third-party dependencies needed by Bazel.
/third_party/versions.bzl @oppia/owners
# The list of recorded licenses for all distributed third-party dependencies.
/scripts/assets/maven_dependencies.textproto @oppia/owners
# Extracted license texts. This file should never change since it's only
# generated during build time.
/app/src/main/res/values/third_party_dependencies.xml @oppia/android-dev-workflow-reviewers
################################################################################
# Linter & IDE configurations #
################################################################################
# Configurations for Buf (Protobuf linter).
/buf.yaml @oppia/android-dev-workflow-reviewers
# IDEA IDE configuration.
/.editorconfig @oppia/android-dev-workflow-reviewers
/.idea/ @oppia/android-dev-workflow-reviewers
# ---========================== GLOBAL OVERRIDES ==========================--- #
################################################################################
# Bazel infrastructure #
################################################################################
# Broad Bazel files used throughout the codebase.
WORKSPACE @oppia/android-app-infrastructure-reviewers
*.bzl @oppia/android-app-infrastructure-reviewers
*.bazel @oppia/android-app-infrastructure-reviewers
.bazelrc @oppia/android-app-infrastructure-reviewers
.bazelversion @oppia/android-app-infrastructure-reviewers
/tools/android/ @oppia/android-app-infrastructure-reviewers
/tools/kotlin/ @oppia/android-app-infrastructure-reviewers
# Configurations for Bazel-built Android App Bundles.
/bundle_config.pb.json @oppia/android-dev-workflow-reviewers
# Proguard configurations for Bazel builds.
/config/proguard/ @oppia/android-dev-workflow-reviewers
# Configuration for KitKat-specific curated builds.
/config/kitkat_main_dex_class_list.txt @oppia/android-dev-workflow-reviewers
# Specific manifest files specifically required for Bazel builds.
/app/src/main/AppAndroidManifest.xml @oppia/android-dev-workflow-reviewers
/app/src/main/DatabindingAdaptersManifest.xml @oppia/android-dev-workflow-reviewers
/app/src/main/DatabindingResourcesManifest.xml @oppia/android-dev-workflow-reviewers
/app/src/main/RecyclerviewAdaptersManifest.xml @oppia/android-dev-workflow-reviewers
/app/src/main/ViewModelManifest.xml @oppia/android-dev-workflow-reviewers
/app/src/main/ViewModelsManifest.xml @oppia/android-dev-workflow-reviewers
/app/src/main/ViewsManifest.xml @oppia/android-dev-workflow-reviewers
/app/src/test/AndroidManifest.xml @oppia/android-dev-workflow-reviewers
/config/src/java/org/oppia/android/config/AndroidManifest.xml @oppia/android-dev-workflow-reviewers
/data/src/test/AndroidManifest.xml @oppia/android-dev-workflow-reviewers
/domain/src/*/AndroidManifest.xml @oppia/android-dev-workflow-reviewers
/testing/src/test/AndroidManifest.xml @oppia/android-dev-workflow-reviewers
/utility/src/*/AndroidManifest.xml @oppia/android-dev-workflow-reviewers
################################################################################
# Gradle infrastructure #
################################################################################
# Gradle build files.
*.gradle @oppia/android-app-infrastructure-reviewers
gradle.properties @oppia/android-app-infrastructure-reviewers
/gradlew @oppia/android-app-infrastructure-reviewers
/gradlew.bat @oppia/android-app-infrastructure-reviewers
/gradle/ @oppia/android-app-infrastructure-reviewers
# Configuration files only used by Gradle builds.
/app/proguard-rules.pro @oppia/android-app-infrastructure-reviewers
/data/proguard-rules.pro @oppia/android-app-infrastructure-reviewers
/domain/proguard-rules.pro @oppia/android-app-infrastructure-reviewers
/utility/proguard-rules.pro @oppia/android-app-infrastructure-reviewers
*.properties @oppia/android-app-infrastructure-reviewers
/data/src/main/AndroidManifest.xml @oppia/android-app-infrastructure-reviewers
################################################################################
# Sensitive file ownership #
################################################################################
# Codeowners ownership (for adding/changing/removing code owners).
/.github/CODEOWNERS @oppia/owners
# Git secret files & related configurations.
/.gitsecret/ @oppia/owners
*.secret @oppia/owners
# Code license & notice.
/LICENSE @oppia/owners
/NOTICE @oppia/owners
# Binary files (which should rarely be introduced to help minimize repo size).
*.png @oppia/owners
# Firebase project integration details (that should generally never change).
/app/google-services.json @oppia/owners
# Configurations for the languages supported by the app.
/config/**/alllanguages/*.textproto @oppia/owners
/config/**/productionlanguages/*.textproto @oppia/owners
# Primary app manifest. Eventually, this will be split up so that only the
# sensitive portions require owners approval.
/app/src/main/AndroidManifest.xml @oppia/owners
# Top-level user-facing major/minor versions, and the version codes used to
# ensure users receive the correct build when installing it from Play Store.
/version.bzl @oppia/owners