From f0bfb75f67db11bf62c1da8f412bc35835004bf7 Mon Sep 17 00:00:00 2001 From: Konrad Jamrozik Date: Mon, 13 Feb 2023 11:44:12 -0800 Subject: [PATCH] Update `CODEOWNERS` paths: fix invalid paths (#1299) As part of ongoing work of enabling wildcard support for `CODEOWNERS`: - https://github.com/Azure/azure-sdk-tools/issues/2770 - https://github.com/Azure/azure-sdk-tools/pull/5088 and enabling stricter validation: - https://github.com/Azure/azure-sdk-tools/issues/4859 this PR: - fixes invalid paths, to match rules explained [here](https://github.com/Azure/azure-sdk/blob/main/docs/policies/opensource.md#codeowners); - removes `/**/tests.yml` and `/**/ci.yml`, to avoid all build failure notifications being routed to it once we enable the new regex-based, wildcard-supporting `CODEOWNERS` matcher, per: https://github.com/Azure/azure-sdk-tools/pull/5088#issuecomment-1397330147 Once this PR is merged, I will enable the new `CODEOWNERS` matcher, similar to how it was done for `net` repo by these two PRs: - https://github.com/Azure/azure-sdk-tools/pull/5241 - https://github.com/Azure/azure-sdk-tools/pull/5240 --- .github/CODEOWNERS | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d8de43a795..149b566e53 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,6 +1,17 @@ # Instructions for CODEOWNERS file format and automatic build failure notifications: # https://github.com/Azure/azure-sdk/blob/main/docs/policies/opensource.md#codeowners +################ +# Orphaned paths +################ +# As of 2/9/2023 these paths have no owners: + +# /** +# /.run/ +# /.vscode/ +# /config/ +# /doc/ + ################ # Automation ################ @@ -36,5 +47,3 @@ # Eng Sys ########### /eng/ @benbp @weshaggard - -/**/ci.yml @benbp