1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# See https://help.github.com/articles/about-codeowners/
# for more info about CODEOWNERS file
# It uses the same pattern rule for gitignore file
# https://git-scm.com/docs/gitignore#_pattern_format
#
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @google/trillian-team will be requested for
# review when someone opens a pull request.
* @google/trillian-team
/*.proto @mhutchinson @AlCutter
/storage/storagepb/storage.proto @mhutchinson @AlCutter
# Mitigation for https://github.com/google/trillian/issues/1297
# Folks to watch out for hanges to DB schemas and ensure that
# there's a note added in a sensible location about how to
# upgrade schema instances.
/storage/mysql/schema/* @mhutchinson @AlCutter
/storage/cloudspanner/spanner.sdl @mhutchinson @AlCutter
/storage/postgresql/schema/* @mhutchinson @AlCutter
|