From 4c39be1f3c8744208c8186c4986605aa096af538 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 7 Jul 2017 16:36:45 -0700 Subject: [PATCH] First stab at a code owners doc More info: https://github.com/blog/2392-introducing-code-owners https://help.github.com/articles/about-codeowners/ --- .github/CODEOWNERS | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..5541b5a6bf --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,21 @@ +# Code ownership for pull request reviews, per +# the feature detailed here: + +# https://github.com/blog/2392-introducing-code-owners +# https://help.github.com/articles/about-codeowners/ + +# These owners will be the default owners for everything in the repo. +* @snipe + +# Order is important. The last matching pattern has the most precedence. +# So if a pull request only touches javascript files, only these owners +# will be requested to review. + +# For example: +# *.js @octocat @github/js + + +app/Importer/* @dmeltzer +app/Http/Controllers/CustomFields* @uberbrady +resources/views/custom_fields/* @uberbrady +docker/* @uberbrady