From d984ff61aa9f9c4bc3e6d1c60f7e074365f6aab9 Mon Sep 17 00:00:00 2001 From: Hofer-Julian <30049909+Hofer-Julian@users.noreply.github.com> Date: Thu, 23 Mar 2023 13:33:23 +0100 Subject: [PATCH] Add CODEOWNERS file (#419) * Add CODEOWNERS file On its own, the only thing this does is request reviews from codeowners. If virtual_environments is touched, @Hofer-Julian will be requested. Otherwise, @fdncred. Combined with branch protection rules, this can enforce who is allowed to review and merge pull requests touching certain parts of the code. * Add core team --- .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 0000000..0e3eb2a --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +* @nushell/core-team +/virtual_environments/ @Hofer-Julian