1# OWNERS 2# ------ 3# 4# The OWNERS file maintains the list of individuals responsible for various 5# parts of this repository, including code review and approval. We use the 6# Gerrit 'owners' plugin, which consumes this file, along with some extra 7# keywords for our own purposes and tooling. 8# 9# For details on the configuration used by 'owners' see: 10# https://gerrit.googlesource.com/plugins/owners/+/refs/heads/master/owners/src/main/resources/Documentation/config.md 11# 12# An OWNERS file must be in the root of a repository but may also be present 13# in any subdirectory. The contents of the subdirectory OWNERS file are 14# combined with parent directories unless 'inherit: false' is set. 15# 16# The owners file is YAML and has [up to] 4 top-level keywords. 17# * owners: A list of individuals who have approval authority on the 18# repository. 19# 20# * reviewers: A list of individuals who have requested review notification 21# on the repository. 22# 23# * matchers: A list of specific file/path matchers for granular 'owners' and 24# 'reviewers'. See 'owners' plugin documentation. 25# 26# * openbmc: A list of openbmc-specific meta-data about owners and reviewers. 27# - name: preferred name of the individual. 28# - email: preferred email address of the individual. 29# - discord: Discord nickname of the individual. 30# 31# It is expected that these 4 sections will be listed in the order above and 32# data within them will be kept sorted. 33 34owners: 35- patrick@stwcx.xyz 36 37reviewers: 38- deepak.kodihalli.83@gmail.com 39 40matchers: 41- partial_regex: yaml/com/ibm 42 owners: 43 - spinler@us.ibm.com 44- partial_regex: yaml/xyz/openbmc_project/Inventory 45 reviewers: 46 - alexander.hansen@9elements.com 47- partial_regex: yaml/xyz/openbmc_project/Sensor 48 reviewers: 49 - alexander.hansen@9elements.com 50- partial_regex: yaml/xyz/openbmc_project/Software 51 reviewers: 52 - alexander.hansen@9elements.com 53- partial_regex: gen/com/ibm 54 owners: 55 - spinler@us.ibm.com 56 57openbmc: 58- name: Alexander Hansen 59 email: alexander.hansen@9elements.com 60 discord: Alexander 61- name: Deepak Kodihalli 62 email: deepak.kodihalli.83@gmail.com 63 discord: dkodihal 64- name: Matt Spinler 65 email: spinler@us.ibm.com 66 discord: mspinler 67- name: Patrick Williams 68 email: patrick@stwcx.xyz 69 discord: stwcx 70