Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
Added .github/CODEOWNERS file (#2339)
Browse files Browse the repository at this point in the history
We want to use this file in Github to automatically assign reviewers to PRs if they are declared as "owners".

Read more about this file here:

* https://blog.github.com/2017-07-06-introducing-code-owners/
* https://help.github.com/articles/about-codeowners/

So far I've added only "my" parts and the ones I feel deeply responsible for.

We can add more code owners later.
  • Loading branch information
kwk authored Oct 30, 2018
1 parent d070588 commit 9dc1c08
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
#
# Read more about this file here:
# * https://blog.github.com/2017-07-06-introducing-code-owners/
# * https://help.github.com/articles/about-codeowners/

/.github/ @kwk
/.make/ @kwk
/controller/golden_files_test.go @kwk
/controller/space_template*.go @kwk
/controller/test-files/space_templates/ @kwk
/controller/test-files/work_item/ @kwk
/controller/work_item*.go @kwk
/controller/workitem*.go @kwk
/convert/ @kwk
/criteria/ @kwk
/design/space_template.go @kwk
/design/work_item*.go @kwk
/design/workitem*.go @kwk
/docs/debugging.adoc @kwk
/errors/ @kwk
/gormsupport/ @kwk
/gormtestsupport/ @kwk
/jsonapi/ @kwk
/migration/ @kwk
/numbersequence/ @kwk
/ptr/ @kwk
/spacetemplates/ @kwk
/test/testfixture/ @kwk
/workitem/* @kwk
/workitem/link/* @kwk
Dockerfile.builder @kwk
cico_run_coverage.sh @kwk
cico_run_tests.sh @kwk
cico_setup.sh @kwk

0 comments on commit 9dc1c08

Please sign in to comment.