From 061d7da67cd17bc0b17dab5e2f317ca6ccb5a67e Mon Sep 17 00:00:00 2001 From: Gustavo Valverde Date: Tue, 1 Mar 2022 10:50:18 -0400 Subject: [PATCH] feat(codeowners): add code reviewers to the repository (#3677) * feat(codeowners): add code owners in repository * fix(path): recently split out crate Co-authored-by: teor * fix(teams): use reviewers instead of owners name * fix(teams): wrong team name * docs: use correct default explanation * fix(path): add extra paths to devops team Co-authored-by: teor --- .github/CODEOWNERS | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..b9acbc328 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,45 @@ +# These owners will be the default owners for everything in +# the repo. Unless a later match takes precedence, +# this teams will be requested for review when someone opens a pull request. +* @ZcashFoundation/network-reviewers @ZcashFoundation/cryptographic-reviewers + +# Network and Async Code +# To be reviewed by Teor, Janito, or Alfredo. +/tower-batch/ @ZcashFoundation/network-reviewers +/tower-fallback/ @ZcashFoundation/network-reviewers +/zebra-consensus/ @ZcashFoundation/network-reviewers +/zebra-network/ @ZcashFoundation/network-reviewers +/zebra-node-services/ @ZcashFoundation/network-reviewers +/zebra-state/ @ZcashFoundation/network-reviewers +/zebra-tests/src/mock_service.rs @ZcashFoundation/network-reviewers +/zebra-tests/src/service_extensions.rs @ZcashFoundation/network-reviewers +/zebra-tests/src/transcript.rs @ZcashFoundation/network-reviewers +/zebra-utils/ @ZcashFoundation/network-reviewers +/zebrad/src/commands/ @ZcashFoundation/network-reviewers +/zebrad/src/components/ @ZcashFoundation/network-reviewers + +# Cryptographic Code +# To be reviewed by Deirdre, Conrado, or Marek. +/zebra-consensus/src/primitives/ @ZcashFoundation/cryptographic-reviewers +/zebra-chain/src/primitives/ @ZcashFoundation/cryptographic-reviewers +/zebra-chain/src/orchard/ @ZcashFoundation/cryptographic-reviewers +/zebra-chain/src/sapling/ @ZcashFoundation/cryptographic-reviewers +/zebra-chain/src/sprout/ @ZcashFoundation/cryptographic-reviewers +/zebra-chain/src/transparent/ @ZcashFoundation/cryptographic-reviewers +/zebra-chain/src/history_tree.rs @ZcashFoundation/cryptographic-reviewers +/zebra-chain/src/history_tree/ @ZcashFoundation/cryptographic-reviewers + +# Devops Code +# To be reviewed by Gustavo, Deirdre, Teor, or Conrado. +/.github/ @ZcashFoundation/devops-reviewers +/docker/ @ZcashFoundation/devops-reviewers +cloudbuild.yaml @ZcashFoundation/devops-reviewers +codecov.yml @ZcashFoundation/devops-reviewers +.dockerignore @ZcashFoundation/devops-reviewers +codecov.yml @ZcashFoundation/devops-reviewers +firebase.json @ZcashFoundation/devops-reviewers +katex-header.html @ZcashFoundation/devops-reviewers + +# Unsafe Code +# To be reviewed by Teor, Janito, Conrado, or Marek. +/zebra-script/ @ZcashFoundation/unsafe-rust-reviewers