From a41c6f8d84003fde6d81f0a0ee00ce95b565e910 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Thu, 10 Aug 2023 15:48:05 -0700 Subject: [PATCH] misc: Remove PMC/Maintainers list from MAINTAINERS.yaml Change-Id: I772fa31d0aeea5534355731d841cf2d118fa0df4 --- MAINTAINERS.yaml | 15 --------------- util/git-commit-msg.py | 3 +-- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/MAINTAINERS.yaml b/MAINTAINERS.yaml index 79d738cdaa..bbf6e50ddf 100644 --- a/MAINTAINERS.yaml +++ b/MAINTAINERS.yaml @@ -39,21 +39,6 @@ # listed as an expert are typically good to add as a reviewer for pull requests # targeting that subsystem. - -pmc: - desc: >- - PMC Members (general maintainers): - status: maintained - maintainers: - - Andreas Sandberg - - Giacomo Travaglini - - Matt Poremba - - Jason Lowe-Power (chair) - - Zhengrong Wang - - Borius Shingarov - - Matt Sinclair - - Bobby R. Bruce - arch: desc: >- General architecture-specific components diff --git a/util/git-commit-msg.py b/util/git-commit-msg.py index 12baad8c19..c12b0cd215 100755 --- a/util/git-commit-msg.py +++ b/util/git-commit-msg.py @@ -100,8 +100,7 @@ def _validateTags(commit_header): maintainer_dict = maintainers.Maintainers.from_file() valid_tags = [tag for tag, _ in maintainer_dict] - # Remove non-tag 'pmc' and add special tags not in MAINTAINERS.yaml - valid_tags.remove("pmc") + # Add special tags not in MAINTAINERS.yaml valid_tags.extend(["RFC", "WIP"]) tags = "".join(commit_header.split(":")[0].split()).split(",")