From baf8c74bace4fcd7f407dcf11fbfe98395127dfd Mon Sep 17 00:00:00 2001 From: Sergei Pepyakin Date: Mon, 12 Aug 2019 19:16:48 +0200 Subject: [PATCH] Add code owners file (#3371) * Add code owners file. * Update CODEOWNERS * Update CODEOWNERS --- substrate/CODEOWNERS | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 substrate/CODEOWNERS diff --git a/substrate/CODEOWNERS b/substrate/CODEOWNERS new file mode 100644 index 0000000000..2106b2a59e --- /dev/null +++ b/substrate/CODEOWNERS @@ -0,0 +1,15 @@ +# Lists some code owners +# +# For details about syntax, see: +# https://help.github.com/en/articles/about-code-owners +# But here are some important notes: +# +# - Glob syntax is git-like, e.g. `/core` means the core directory in the root, unlike `core` which +# can be everywhere. +# - Multiple owners are supported. +# - Either handle (e.g, @pepyakin) or email can be used. Keep in mind, that handles might work better because they +# are more recognizable on GitHub, you can use them for mentioning unlike an email. +# - The latest matching rule, if multiple, takes precedence. + +/srml/contracts/ @pepyakin +/core/executor/ @pepyakin