From 7e2c594109ce0f7500284e40efa33f1df91ab23d Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Sat, 10 Oct 2020 08:38:11 +0530 Subject: [PATCH 1/2] Add CODEOWNERS file --- .github/CODEOWNERS | 89 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000000..454a41a7c91c --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,89 @@ +# This is a comment. +# Each line is a file pattern followed by one or more owners. + +# More details are here: https://help.github.com/articles/about-codeowners/ + +# The '*' pattern is global owners. + +# Order is important. The last matching pattern has the most precedence. + + +/.github/ @cclauss + +/arithmetic_analysis/ + +/backtracking/ + +/bit_manipulation/ + +/blockchain/ + +/boolean_algebra/ + +/cellular_automata/ + +/ciphers/ @cclauss + +/compression/ + +/computer_vision/ + +/conversions/ @cclauss + +/data_structures/ @cclauss + +/digital_image_processing/ + +/divide_and_conquer/ + +/dynamic_programming/ + +/file_transfer/ + +/fuzzy_logic/ + +/genetic_algorithm/ + +/geodesy/ + +/graphics/ + +/graphs/ + +/greedy_method/ + +/hashes/ + +/images/ + +/linear_algebra/ + +/machine_learning/ + +/maths/ + +/matrix/ + +/networking_flow/ + +/neural_network/ + +/other/ @cclauss + +/project_euler/ @dhruvmanila + +/quantum/ + +/scheduling/ + +/scripts/ + +/searches/ + +/sorts/ + +/strings/ @cclauss + +/traversals/ + +/web_programming/ @cclass From 980c18ebefc7a0c4b7263bd4872895fb304c347f Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Sat, 10 Oct 2020 17:26:53 +0530 Subject: [PATCH 2/2] Commented out the non-assigned directory --- .github/CODEOWNERS | 67 ++++++++++++++++++++++++---------------------- 1 file changed, 35 insertions(+), 32 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 454a41a7c91c..9e74de6dcee3 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -7,83 +7,86 @@ # Order is important. The last matching pattern has the most precedence. +/.travis.yml @cclauss @dhruvmanila + +/.pre-commit-config.yaml @cclauss @dhruvmanila /.github/ @cclauss -/arithmetic_analysis/ +# /arithmetic_analysis/ -/backtracking/ +# /backtracking/ -/bit_manipulation/ +# /bit_manipulation/ -/blockchain/ +# /blockchain/ -/boolean_algebra/ +# /boolean_algebra/ -/cellular_automata/ +# /cellular_automata/ /ciphers/ @cclauss -/compression/ +# /compression/ -/computer_vision/ +# /computer_vision/ /conversions/ @cclauss /data_structures/ @cclauss -/digital_image_processing/ +# /digital_image_processing/ -/divide_and_conquer/ +# /divide_and_conquer/ -/dynamic_programming/ +# /dynamic_programming/ -/file_transfer/ +# /file_transfer/ -/fuzzy_logic/ +# /fuzzy_logic/ -/genetic_algorithm/ +# /genetic_algorithm/ -/geodesy/ +# /geodesy/ -/graphics/ +# /graphics/ -/graphs/ +# /graphs/ -/greedy_method/ +# /greedy_method/ -/hashes/ +# /hashes/ -/images/ +# /images/ -/linear_algebra/ +# /linear_algebra/ -/machine_learning/ +# /machine_learning/ -/maths/ +# /maths/ -/matrix/ +# /matrix/ -/networking_flow/ +# /networking_flow/ -/neural_network/ +# /neural_network/ /other/ @cclauss /project_euler/ @dhruvmanila -/quantum/ +# /quantum/ -/scheduling/ +# /scheduling/ -/scripts/ +# /scripts/ -/searches/ +# /searches/ -/sorts/ +# /sorts/ /strings/ @cclauss -/traversals/ +# /traversals/ /web_programming/ @cclass