-
Notifications
You must be signed in to change notification settings - Fork 526
/
CODEOWNERS
Validating CODEOWNERS rules...
222 lines (172 loc) · 8.52 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
# Per-directory ownership and automatic assignment for pull requests.
# IMPORTANT NOTES FOR CODEOWNERS:
#
# - If you will be unavailable for more than 24 hours, please replace your
# ownership with a delegate, file an issue, and add a todo above the owner
# line like so:
#
# TODO(#ISSUE_NUMBER): Revert ownership to @USERNAME after YYYY-MM-DD.
#
# (See oppia/#10250 for an example.) Please make sure to restore ownership after
# the above date passes.
# Blanket codeowners
# This is for the case when new files are created in any directories that aren't
# covered as a whole, since in these cases, codeowners are not recognized for
# those files when reviewing, even if the PR does add it. Unless new
# files/folders are created in the following directories, these codeowners would
# be superseded by the relevant codeowners mentioned elsewhere in this file.
# (Reference: https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners)
#####################################################################################
# Blanket ownership #
#####################################################################################
# Codeowners ownership (for adding/changing/removing code owners).
.github/CODEOWNERS @oppia/owners
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Bazel build files.
WORKSPACE @fsharpasharp
*.bzl @fsharpasharp
*.bazel @fsharpasharp
.bazelrc @fsharpasharp
/tools/android/ @fsharpasharp
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Gradle build files.
*.gradle @rt4914
gradle.properties @rt4914
gradlew @rt4914
gradlew.bat @rt4914
/gradle/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# GitHub configuration files.
.gitignore @rt4914
/.github/*.md @rt4914
/.github/ISSUE_TEMPLATE @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Git secret files & related configurations.
/.gitsecret/ @seanlip
*.secret @seanlip
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# CI configuration.
/.github/workflows/ @vinitamurthi
# All tests.
*Test.kt @anandwana001
# All resource files.
/app/src/main/res/**/*.xml @rt4914
/utility/src/main/res/**/*.xml @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Proguard configuration.
*.pro @rt4914
# TODO(#3164): Restore code ownership for @BenHenning after 2021-05-24.
# Lesson assets.
/domain/src/main/assets/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Android manifests and top-level app configuration.
*Manifest.xml @rt4914
# Linter configuration.
buf.yaml @anandwana001
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# IDEA IDE configuration.
.editorconfig @rt4914
/.idea/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Robolectric configuration.
*.properties @anandwana001
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Firebase configuration.
/app/google-services.json @vinitamurthi
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Binary files.
*.png @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Important codebase files.
LICENSE @seanlip
NOTICE @seanlip
#####################################################################################
# app module #
#####################################################################################
# Global app module code ownership.
/app/**/*.kt @rt4914
/app/**/*.java @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# State players.
/app/src/*/java/org/oppia/android/app/player/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Bindable adapter utilities.
/app/src/main/java/org/oppia/android/app/recyclerview/BindableAdapter.kt @rt4914
/app/src/main/java/org/oppia/android/app/recyclerview/RecyclerViewBindingAdapter.java @rt4914
/app/src/sharedTest/java/org/oppia/android/app/recyclerview/BindableAdapterTest.kt @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Dagger configuration.
/app/src/main/java/org/oppia/android/app/activity/ @rt4914
/app/src/main/java/org/oppia/android/app/application/ @rt4914
/app/src/main/java/org/oppia/android/app/fragment/ @rt4914
/app/src/main/java/org/oppia/android/app/view/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Databinding adapters.
/app/src/main/java/org/oppia/android/app/databinding/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# App deprecation functionality.
/app/src/*/java/org/oppia/android/app/deprecation/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Parsing functionality needed for interactions.
/app/src/*/java/org/oppia/android/app/parser/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Bazel/data-binding shims.
/app/src/*/java/org/oppia/android/app/shim/ @fsharpasharp
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Splash screen.
/app/src/*/java/org/oppia/android/app/splash/ @rt4914
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# View model infrastructure.
/app/src/*/java/org/oppia/android/app/viewmodel/ @rt4914
# App testing infrastructure.
/app/src/*/java/org/oppia/android/app/testing/ @anandwana001
#####################################################################################
# domain module #
#####################################################################################
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Global domain module code ownership.
/domain/**/*.kt @vinitamurthi
# Questions support.
/domain/src/*/java/org/oppia/android/domain/question/ @vinitamurthi
# Oppia logging support.
/domain/src/main/java/org/oppia/android/domain/oppialogger/ @vinitamurthi
#####################################################################################
# testing module #
#####################################################################################
# TODO(#3164): Restore code ownership for @BenHenning after 2021-05-24.
# Global testing module code ownership.
/testing/**/*.kt @anandwana001
#####################################################################################
# data module #
#####################################################################################
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Global data module code ownership.
/data/**/*.kt @rt4914
/data/src/test/**/*.json @rt4914
#####################################################################################
# utility module #
#####################################################################################
# TODO(#3164): Restore code ownership to @BenHenning after 2021-05-24.
# Global utility module code ownership.
/utility/**/*.kt @anandwana001
# Accessibility utilities.
/utility/src/*/java/org/oppia/android/util/accessibility/ @rt4914
# Core logging infrastructure.
/utility/src/*/java/org/oppia/android/util/logging/ @vinitamurthi
# Miscellaneous statusbar UI utilities.
/utility/src/*/java/org/oppia/android/util/statusbar/ @rt4914
#####################################################################################
# scripts #
#####################################################################################
# TODO(#3164): Restore code ownership for @BenHenning after 2021-05-24.
# Global scripts code ownership.
/scripts/ @anandwana001
#####################################################################################
# model #
#####################################################################################
# TODO(#3164): Restore code ownership for @BenHenning after 2021-05-24.
# Global proto file ownership (for protos outside the model directory since all protos should belong in models).
*.proto @vinitamurthi
# TODO(#3164): Restore code ownership for @BenHenning after 2021-05-24.
# Global model ownership.
/model/ @vinitamurthi