From 648c6e0b57f2668e9fa19c1c0da5a882b834ea55 Mon Sep 17 00:00:00 2001 From: Joseph Macaranas <145489236+amd-jmacaran@users.noreply.github.com> Date: Tue, 21 May 2024 11:05:12 -0400 Subject: [PATCH] CODEOWNERS nested folders pattern (#3141) As documented in the link below, patterns ending with "/*" do not include further nested files and folders. Desired behaviour is to catch these further nested files and folders. https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners --- .github/CODEOWNERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 42567d58ee..59f713e314 100755 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,7 +1,7 @@ * @amd-aakash @jlgreathouse @samjwu @yhuiYH @ROCm/rocm-documentation # Documentation files -docs/* @amd-aakash @jlgreathouse @samjwu @yhuiYH @ROCm/rocm-documentation +docs/ @amd-aakash @jlgreathouse @samjwu @yhuiYH @ROCm/rocm-documentation *.md @amd-aakash @jlgreathouse @samjwu @yhuiYH @ROCm/rocm-documentation *.rst @amd-aakash @jlgreathouse @samjwu @yhuiYH @ROCm/rocm-documentation # External CI -/.azuredevops/* @ROCm/external-ci +/.azuredevops/ @ROCm/external-ci