-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(*): add CODEOWNERS to repo (#4941)
Adds configuration for github code owners (https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners) to the repo
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# catchall: someone in software should be notified for any change in this repo | ||
* @Opentrons/software | ||
|
||
# language expertise verticals - if a PR changes things in multiple projects let's | ||
# notify those language communities | ||
*.js @Opentrons/js | ||
*.py @Opentrons/py | ||
/flow-typed @Opentrons/js | ||
/webpack-config @Opentrons/js | ||
|
||
# subprojects - those with clear team ownership should have appropriate notifications | ||
/protocol-designer @Opentrons/spddrs | ||
/labware-designer @Opentrons/spddrs | ||
/labware-library @Opentrons/spddrs | ||
/protocol-library-kludge @Opentrons/spddrs | ||
/update-server @Opentrons/cpx | ||
/api/src/opentrons @Opentrons/hmg | ||
/discovery-client @Opentrons/cpx | ||
/shared-data/pipette @Opentrons/hmg | ||
/shared-data/protocol @Opentrons/spddrs | ||
/shared-data/module @Opentrons/hmg | ||
/shared-data/deck @Opentrons/hmg | ||
/shared-data/labware @Opentrons/hmg | ||
|
||
# subprojects by language - some subprojects are shared by teams but united by a | ||
# language community (including makefiles and config) so mark them appropriately | ||
/app @Opentrons/js | ||
/app-shell @Opentrons/js | ||
/components @Opentrons/js | ||
/api @Opentrons/py | ||
/shared-data/js @Opentrons/js |