From dd87b12b5a17766d134c3e1a05a1cb6bacbdc1f9 Mon Sep 17 00:00:00 2001 From: Jane Chu <7559015+janechu@users.noreply.github.com> Date: Thu, 13 Feb 2025 13:00:40 -0800 Subject: [PATCH] Simplify codeowners file (#7069) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Pull Request ## 📖 Description The CODEOWNERS file is too complex and we have a limited number of reviewers at present so this change should help move things through the development process more swiftly while maintaining quality for trusted reviewers. This change also removes @nicholasrice due to current write permissions not being available for the user which throws an error in GitHub. ## ✅ Checklist ### General - [ ] I have included a change request file using `$ npm run change` - [ ] I have added tests for my changes. - [ ] I have tested my changes. - [ ] I have updated the project documentation to reflect my changes. - [x] I have read the [CONTRIBUTING](https://github.com/microsoft/fast/blob/main/CONTRIBUTING.md) documentation and followed the [standards](https://github.com/microsoft/fast/blob/main/CODE_OF_CONDUCT.md#our-standards) for this project. --- .github/CODEOWNERS | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 739551d6791..31002049187 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -5,31 +5,4 @@ # The last matching pattern has the most precendence. # These *code owners* will be the default owners for everything in the repository. -* @chrisdholt @janechu @nicholasrice @radium-v - -# File type specific owners -# Markdown specific files -*.md @awentzel @chrisdholt @falkicon -/docs/ @awentzel @chrisdholt @falkicon - -# GitHub management -.github/ @awentzel @janechu @chrisdholt @nicholasrice -.github/workflows/ @awentzel @chrisdholt @nicholasrice - -# Build scripts -*.yml @awentzel @janechu @nicholasrice @chrisdholt -build/ @janechu @nicholasrice @chrisdholt @awentzel - -# Specifications -/specs/ @chrisdholt @janechu @nicholasrice - -# Sites -/sites/website/ @awentzel @chrisdholt @falkicon - -# Package specific owners - -# Web components -/packages/web-components/fast-element/ @chrisdholt @janechu @nicholasrice - -# the change directory has no owners -/change/ +* @chrisdholt @janechu @radium-v