From 8c6422a93b97783359d20c5327ef7f498f565887 Mon Sep 17 00:00:00 2001 From: Nikki Everett Date: Fri, 15 Nov 2024 15:32:51 -0600 Subject: [PATCH] Add CODEOWNERS file with entry for docs directory (#25959) ## Summary & Motivation Adds [CODEOWNERS file](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners) with entry for docs directory so I am automatically added as a reviewer to docs PRs. ## How I Tested These Changes N/A ## Changelog Adds CODEOWNERS file with entry for docs directory so @neverett is automatically added as a reviewer to docs PRs. --------- Signed-off-by: nikki everett --- .github/CODEOWNERS | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000000..e5762eecce67a --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# Automatically request docs team for docs PR review +/docs/ @neverett