mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
82e52b8be8
* CI: prep for the new ff deployment * CI: variable for CI image * git: add CI team and remove Max from CODEOWNERS * CI: diener should be updated in CI image, not here. * CI: diener should be updated in CI image, not here. * CI: run cargo deny on changes to manifests and lock; run build jobs on schedules [skip ci] * CI: remove flaming-fir deployment, it will be handled from s3 updates [skip ci] * CI: trigger simnet with a certain substrate version * CI: remove cargo-audit in favor of cargo-deny; prepare for being triggered * CI: prepare to be triggered * CI: chore
64 lines
1.9 KiB
Plaintext
64 lines
1.9 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.
|
|
|
|
# CI
|
|
/.maintain/ @paritytech/ci
|
|
/.github/ @paritytech/ci
|
|
/.gitlab-ci.yml @paritytech/ci
|
|
|
|
# Block production
|
|
/client/basic-authorship/ @NikVolf
|
|
|
|
# Sandboxing capability of Substrate Runtime
|
|
/primitives/sr-sandbox/ @pepyakin
|
|
/primitives/core/src/sandbox.rs @pepyakin
|
|
|
|
# Transaction pool
|
|
/client/transaction-pool/ @NikVolf
|
|
/primitives/transaction-pool/ @NikVolf
|
|
|
|
# Offchain
|
|
/client/offchain/ @tomusdrw
|
|
/primitives/offchain/ @tomusdrw
|
|
|
|
# GRANDPA, BABE, consensus stuff
|
|
/frame/babe/ @andresilva
|
|
/frame/grandpa/ @andresilva
|
|
/client/finality-grandpa/ @andresilva
|
|
/client/consensus/babe/ @andresilva
|
|
/client/consensus/slots/ @andresilva
|
|
/client/consensus/pow/ @sorpaas
|
|
/primitives/consensus/pow/ @sorpaas
|
|
|
|
# Contracts
|
|
/frame/contracts/ @athei
|
|
|
|
# NPoS and election
|
|
/frame/staking/ @kianenigma
|
|
/frame/elections/ @kianenigma
|
|
/frame/elections-phragmen/ @kianenigma
|
|
/primitives/npos-elections/ @kianenigma
|
|
|
|
# Fixed point arithmetic
|
|
/primitives/sp-arithmetic/ @kianenigma
|
|
|
|
# Transaction weight stuff
|
|
/frame/support/src/weights.rs @shawntabrizi
|