1*f647e991SManojkiran Eda# OWNERS 2*f647e991SManojkiran Eda# ------ 3*f647e991SManojkiran Eda# 4*f647e991SManojkiran Eda# The OWNERS file maintains the list of individuals responsible for various 5*f647e991SManojkiran Eda# parts of this repository, including code review and approval. We use the 6*f647e991SManojkiran Eda# Gerrit 'owners' plugin, which consumes this file, along with some extra 7*f647e991SManojkiran Eda# keywords for our own purposes and tooling. 8*f647e991SManojkiran Eda# 9*f647e991SManojkiran Eda# For details on the configuration used by 'owners' see: 10*f647e991SManojkiran Eda# https://gerrit.googlesource.com/plugins/owners/+/refs/heads/master/owners/src/main/resources/Documentation/config.md 11*f647e991SManojkiran Eda# 12*f647e991SManojkiran Eda# An OWNERS file must be in the root of a repository but may also be present 13*f647e991SManojkiran Eda# in any subdirectory. The contents of the subdirectory OWNERS file are 14*f647e991SManojkiran Eda# combined with parent directories unless 'inherit: false' is set. 15*f647e991SManojkiran Eda# 16*f647e991SManojkiran Eda# The owners file is YAML and has [up to] 4 top-level keywords. 17*f647e991SManojkiran Eda# * owners: A list of individuals who have approval authority on the 18*f647e991SManojkiran Eda# repository. 19*f647e991SManojkiran Eda# 20*f647e991SManojkiran Eda# * reviewers: A list of individuals who have requested review notification 21*f647e991SManojkiran Eda# on the repository. 22*f647e991SManojkiran Eda# 23*f647e991SManojkiran Eda# * matches: A list of specific file/path matches for granular 'owners' and 24*f647e991SManojkiran Eda# 'reviewers'. See 'owners' plugin documentation. 25*f647e991SManojkiran Eda# 26*f647e991SManojkiran Eda# * openbmc: A list of openbmc-specific meta-data about owners and reviewers. 27*f647e991SManojkiran Eda# - name: preferred name of the individual. 28*f647e991SManojkiran Eda# - email: preferred email address of the individual. 29*f647e991SManojkiran Eda# - discord: Discord nickname of the individual. 30*f647e991SManojkiran Eda# 31*f647e991SManojkiran Eda# It is expected that these 4 sections will be listed in the order above and 32*f647e991SManojkiran Eda# data within them will be kept sorted. 33*f647e991SManojkiran Eda 34*f647e991SManojkiran Edaowners: 35*f647e991SManojkiran Eda- wak@google.com 36*f647e991SManojkiran Eda 37*f647e991SManojkiran Edareviewers: 38*f647e991SManojkiran Eda- venture@google.com 39*f647e991SManojkiran Eda 40*f647e991SManojkiran Edamatches: 41*f647e991SManojkiran Eda 42*f647e991SManojkiran Edaopenbmc: 43*f647e991SManojkiran Eda- name: Patrick Venture 44*f647e991SManojkiran Eda email: venture@google.com 45*f647e991SManojkiran Eda discord: Venture 46*f647e991SManojkiran Eda- name: William Kennington 47*f647e991SManojkiran Eda email: wak@google.com 48*f647e991SManojkiran Eda discord: wak 49