From bf5fbf89714710ba5ad978a32e849c4c88bd2cbd Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Wed, 14 Jun 2023 10:51:59 +0530 Subject: [PATCH] Add GitHub CODEOWNERS file (#5054) ## Summary Add GitHub CODEOWNERS file. Initiating this, we can discuss and iterate further. https://help.github.com/articles/about-codeowners/ ## Test Plan Look out for review requests :) --- .github/CODEOWNERS | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..9cd29adcda --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,9 @@ +# GitHub code owners file. For more info: https://help.github.com/articles/about-codeowners/ +# +# - Comment lines begin with `#` character. +# - Each line is a file pattern followed by one or more owners. +# - The '*' pattern is global owners. +# - Order is important. The last matching pattern has the most precedence. + +# Jupyter +/crates/ruff/src/jupyter/ @dhruvmanila