diff options
author | Wladimir J. van der Laan <laanwj@protonmail.com> | 2019-10-10 11:00:28 +0200 |
---|---|---|
committer | Adam Jonas <jonas@chaincode.com> | 2020-08-03 16:43:08 -0400 |
commit | e02da2290619553f6fba67d8584cb1a49414bc87 (patch) | |
tree | 62a6499012ddcec1ec26fbb5938b186e476aba20 /CODEOWNERS | |
parent | 34eb2362581d4d8f0bfd3baa12ba750afaf85c62 (diff) |
doc: Add CODEOWNERS file
Describes maintainers.
See https://help.github.com/en/articles/about-code-owners for syntax.
Ref #17094.
Diffstat (limited to 'CODEOWNERS')
-rw-r--r-- | CODEOWNERS | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000000..010ef48bb2 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,25 @@ +# Nonspecific maintainers +# @laanwj +# @sipa +# @fanquake + +# Build system maintainer +/configure.ac @theuni +/build-aux/ @theuni +/depends/ @theuni +*.am @theuni +Makefile.* @theuni + +# Test framework maintainer +/src/test/ @marcofalke +/test/ @marcofalke +/ci/ @marcofalke + +# GUI maintainer +/src/qt/ @jonasschnelli + +# Wallet maintainer +/src/wallet/ @meshcollider + +# MSVC build system maintainer +/build_msvc/ @sipsorcery |