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