Files
pezkuwi-subxt/substrate/docs/CODEOWNERS
T
André Silva e2e2eb7b32 docs: fix CODEOWNERS paths (#4138)
* docs: fix CODEOWNERS paths

* Apply suggestions from code review
2019-11-19 11:30:39 +01:00

68 lines
2.2 KiB
Plaintext

# Lists some code owners.
#
# A codeowner just oversees some part of the codebase. If an owned file is changed then the
# corresponding codeowner receives a review request. An approval of the codeowner is
# not required for merging a PR though.
#
# **This is pretty much an experiment at the moment**. Feel free to remove yourself at any time if
# you do not want to receive review requests any longer.
#
# 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.
# Wasm execution and the wasm side of Substrate Runtime Interface
/client/executor/ @pepyakin
/primitives/sr-io/ @pepyakin
# Sandboxing capability of Substrate Runtime
/primitives/sr-sandbox/ @pepyakin
/primitives/core/src/sandbox.rs @pepyakin
# Transaction pool
/client/transaction-pool/ @tomusdrw
# Offchain
/client/offchain/ @tomusdrw
/primitives/offchain/ @tomusdrw
# Everything that has RPC in it
/bin/node/rpc/ @tomusdrw
/bin/node/rpc-client/ @tomusdrw
/client/rpc/ @tomusdrw
/primitives/rpc/ @tomusdrw
# GRANDPA, BABE, consensus stuff
/paint/babe/ @andresilva @DemiMarie-parity
/paint/grandpa/ @andresilva @DemiMarie-parity
/client/finality-grandpa/ @andresilva @DemiMarie-parity
/client/consensus/babe/ @andresilva @DemiMarie-parity
/client/consensus/slots/ @andresilva @DemiMarie-parity
# Contracts
/paint/contracts/ @pepyakin @thiolliere @jimpo
/paint/contracts/src/wasm/runtime.rs @Robbepop
# Inflation points
/paint/staking/src/inflation.rs @thiolliere
# NPoS and Governance
/paint/staking/ @kianenigma
/paint/election/ @kianenigma
# End to end testing of substrate node
/bin/node/executor/ @kianenigma
# Transaction weight stuff
/primitives/sr-primitives/src/weights.rs @kianenigma
# Support crates
/paint/support/ @thiolliere @kianenigma