diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-08 14:55:33 -0400 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-08 14:55:33 -0400 |
| commit | d380c48a6a523d2df659a6e78d50e027ef542122 (patch) | |
| tree | 4a725eff39442d2531d451d7710957b3bda6daec /CODEOWNERS | |
| parent | 88fe14caacfd5cfe590692b3e14b5af611458032 (diff) | |
| download | cmd2-git-d380c48a6a523d2df659a6e78d50e027ef542122.tar.gz | |
Added a CODEOWNERS file to automatically nominate code reviewers for pull requests
Also added some unit tests related to when default_to_shell is True
Diffstat (limited to 'CODEOWNERS')
| -rw-r--r-- | CODEOWNERS | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 00000000..c10568d9 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,14 @@ +# Lines starting with '#' are comments. +# Each line is a file pattern followed by one or more owners. +# Owners of code are automatically nominated to review PRs involving that code. + +# These owners will be the default owners for everything in the repo. +* @tleonhardt + +# 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. +#*.js @octocat @github/js + +# You can also use email addresses if you prefer. +#docs/* docs@example.com |
