From 8ec162c733c1bd7d4abac95189b5f97167c95e12 Mon Sep 17 00:00:00 2001 From: Mariatta Date: Thu, 27 Jul 2017 14:25:02 -0700 Subject: [PATCH 1/3] Create CODEOWNERS Copied over info from .mention-bot --- .github/CODEOWNERS | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000000000..9563dbd4afb448 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,11 @@ +Doc/library/hashlib.rst @tiran +Doc/library/ssl.rst @tiran +Lib/hashlib.py @tiran +Lib/ssl.py @tiran +Lib/test/test_hashlib.py @tiran +Lib/test/test_ssl.py @tiran +Modules/_hashopenssl.c @tiran +Modules/_ssl* @tiran +Modules/hashlib.h @tiran +Python/pyhash.c @tiran +Include/pyhash.h @tiran From f7c17a5450eb670e49af45e54ff9e93f533d9ed4 Mon Sep 17 00:00:00 2001 From: Mariatta Wijaya Date: Sun, 30 Jul 2017 11:50:39 -0700 Subject: [PATCH 2/3] Use wildcards --- .github/CODEOWNERS | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 9563dbd4afb448..511589d6caaf67 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,11 +1,6 @@ -Doc/library/hashlib.rst @tiran -Doc/library/ssl.rst @tiran -Lib/hashlib.py @tiran -Lib/ssl.py @tiran -Lib/test/test_hashlib.py @tiran -Lib/test/test_ssl.py @tiran -Modules/_hashopenssl.c @tiran -Modules/_ssl* @tiran -Modules/hashlib.h @tiran -Python/pyhash.c @tiran -Include/pyhash.h @tiran +# Hashing +**/*hashlib* @tiran +**/*pyhash* @tiran + +# SSL +**/*ssl* @tiran From 295124609df4aacabd8b6f2badca59a353177b7e Mon Sep 17 00:00:00 2001 From: Mariatta Date: Mon, 31 Jul 2017 15:46:52 -0700 Subject: [PATCH 3/3] Add comments explaining what this file is about --- .github/CODEOWNERS | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 511589d6caaf67..d1ebf2c2bacdee 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,9 @@ +# See https://help.github.com/articles/about-codeowners/ +# for more info about CODEOWNERS file + +# It uses the same pattern rule for gitignore file +# https://git-scm.com/docs/gitignore#_pattern_format + # Hashing **/*hashlib* @tiran **/*pyhash* @tiran