-
Notifications
You must be signed in to change notification settings - Fork 521
/
CODEOWNERS
Validating CODEOWNERS rules...
188 lines (139 loc) · 6.56 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
# 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
# Bazel build files.
WORKSPACE @BenHenning
*.bzl @BenHenning
*.bazel @BenHenning
.bazelrc @BenHenning
/tools/android/ @BenHenning
# Gradle build files.
*.gradle @BenHenning
gradle.properties @BenHenning
gradlew @BenHenning
gradlew.bat @BenHenning
/gradle/ @BenHenning
# GitHub configuration files.
.gitignore @BenHenning
/.github/*.md @BenHenning
/.github/ISSUE_TEMPLATE @BenHenning
# CI configuration.
/.github/workflows/ @BenHenning
# All tests.
*Test.kt @anandwana001
# All resource files.
/app/src/main/res/**/*.xml @rt4914
/utility/src/main/res/**/*.xml @rt4914
# Proguard configuration.
*.pro @BenHenning
# Lesson assets.
/domain/src/main/assets/ @BenHenning @rt4914
# Android manifests and top-level app configuration.
*Manifest.xml @BenHenning
# Linter configuration.
buf.yaml @anandwana001
# IDEA IDE configuration.
.editorconfig @BenHenning
/.idea/ @BenHenning
# Robolectric configuration.
*.properties @BenHenning
# Firebase configuration.
/app/google-services.json @BenHenning
# Binary files.
*.png @BenHenning
# Important codebase files.
LICENSE @BenHenning
#####################################################################################
# app module #
#####################################################################################
# Global app module code ownership.
/app/**/*.kt @rt4914
/app/**/*.java @rt4914
# State players.
/app/src/*/java/org/oppia/android/app/player/ @BenHenning
# Bindable adapter utilities.
/app/src/main/java/org/oppia/android/app/recyclerview/BindableAdapter.kt @BenHenning
/app/src/main/java/org/oppia/android/app/recyclerview/RecyclerViewBindingAdapter.java @BenHenning
/app/src/sharedTest/java/org/oppia/android/app/recyclerview/BindableAdapterTest.kt @BenHenning
# Dagger configuration.
/app/src/main/java/org/oppia/android/app/activity/ @BenHenning
/app/src/main/java/org/oppia/android/app/application/ @BenHenning
/app/src/main/java/org/oppia/android/app/fragment/ @BenHenning
/app/src/main/java/org/oppia/android/app/view/ @BenHenning
# Databinding adapters.
/app/src/main/java/org/oppia/android/app/databinding/ @BenHenning
# App deprecation functionality.
/app/src/*/java/org/oppia/android/app/deprecation/ @BenHenning
# Parsing functionality needed for interactions.
/app/src/*/java/org/oppia/android/app/parser/ @BenHenning
# Bazel/data-binding shims.
/app/src/*/java/org/oppia/android/app/shim/ @BenHenning
# Splash screen.
/app/src/*/java/org/oppia/android/app/splash/ @BenHenning
# View model infrastructure.
/app/src/*/java/org/oppia/android/app/viewmodel/ @BenHenning
# App testing infrastructure.
/app/src/*/java/org/oppia/android/app/testing/ @anandwana001
#####################################################################################
# domain module #
#####################################################################################
# Global domain module code ownership.
/domain/**/*.kt @BenHenning
# 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 #
#####################################################################################
# Global testing module code ownership.
/testing/**/*.kt @anandwana001 @BenHenning
#####################################################################################
# data module #
#####################################################################################
# Global data module code ownership.
/data/**/*.kt @BenHenning
/data/src/test/**/*.json @BenHenning
#####################################################################################
# utility module #
#####################################################################################
# Global utility module code ownership.
/utility/**/*.kt @BenHenning
# 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 #
#####################################################################################
# Global scripts code ownership.
/scripts/ @anandwana001 @BenHenning
#####################################################################################
# model #
#####################################################################################
# Global proto file ownership (for protos outside the model directory since all protos should belong in models).
*.proto @BenHenning @vinitamurthi
# Global model ownership.
/model/ @vinitamurthi @BenHenning