uptake / autofocus

Deep learning computer vision for classifying wildlife in camera trap images
BSD 3-Clause "New" or "Revised" License
54 stars 30 forks source link

add CODEOWNERS file #91

Closed jameslamb closed 5 years ago

jameslamb commented 5 years ago

I learned about this cool thing over in fRanz. GitHub allows you to add a CODEOWNERS file that will be used to set default reviewers when PRs are opened.

This has to be done by a repo admin, so assigning to you @gsganden

gsganden commented 5 years ago

Cool! Do you see a use for it in this project currently?

jameslamb commented 5 years ago

Yes I think so. Even if you just do

*   @gsganden 

It would add you as the reviewer automatically on all PRs. Right now, if someone who isn't me or you submits a PR, they do not have the power to request a review from you and have to wait for you to come do it (so just saves you a click).

I've also noticed that by convention you add me as a reviewer on stuff related to misc. maintenance stuff like CI or things in the .github/ directory. You could change that convention to automation by adding lines like this if you'd like:

.travis.yml    @jameslamb 
.github/*   @jameslamb   

Up to you!