fix(codeowners): avoid multiple reviewer assignments (#3718)
Assign more code to the largest review team, to avoid multiple reviewer assignments.
This commit is contained in:
parent
675fa3621d
commit
5cc7f46200
|
|
@ -2,20 +2,25 @@
|
||||||
# this team will be requested for review when someone opens a pull request.
|
# this team will be requested for review when someone opens a pull request.
|
||||||
#
|
#
|
||||||
# We use a single team here, because if we use two teams, GitHub assigns two reviewers.
|
# We use a single team here, because if we use two teams, GitHub assigns two reviewers.
|
||||||
* @ZcashFoundation/general-rust-reviewers
|
* @ZcashFoundation/general-rust-reviewers
|
||||||
|
|
||||||
|
# Frequently Modified Code
|
||||||
|
#
|
||||||
|
# This code is currently being modified in most PRs,
|
||||||
|
# so we assign reviews to the largest group of reviewers,
|
||||||
|
# to stop GitHub assigning multiple reviewers
|
||||||
|
#
|
||||||
|
# lightwalletd epic
|
||||||
|
/zebrad/src/commands/start.rs @ZcashFoundation/general-rust-reviewers
|
||||||
|
|
||||||
# Network and Async Code
|
# Network and Async Code
|
||||||
/tower-batch/ @ZcashFoundation/network-reviewers
|
/tower-batch/ @ZcashFoundation/network-reviewers
|
||||||
/tower-fallback/ @ZcashFoundation/network-reviewers
|
/tower-fallback/ @ZcashFoundation/network-reviewers
|
||||||
/zebra-consensus/ @ZcashFoundation/network-reviewers
|
|
||||||
/zebra-network/ @ZcashFoundation/network-reviewers
|
/zebra-network/ @ZcashFoundation/network-reviewers
|
||||||
/zebra-node-services/ @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/mock_service.rs @ZcashFoundation/network-reviewers
|
||||||
/zebra-tests/src/service_extensions.rs @ZcashFoundation/network-reviewers
|
/zebra-tests/src/service_extensions.rs @ZcashFoundation/network-reviewers
|
||||||
/zebra-tests/src/transcript.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
|
/zebrad/src/components/ @ZcashFoundation/network-reviewers
|
||||||
|
|
||||||
# Cryptographic Code
|
# Cryptographic Code
|
||||||
|
|
@ -29,12 +34,12 @@
|
||||||
/zebra-chain/src/history_tree/ @ZcashFoundation/cryptographic-reviewers
|
/zebra-chain/src/history_tree/ @ZcashFoundation/cryptographic-reviewers
|
||||||
|
|
||||||
# Devops Code
|
# Devops Code
|
||||||
/.github/ @ZcashFoundation/devops-reviewers
|
/.github/workflows/ @ZcashFoundation/devops-reviewers
|
||||||
|
/.github/mergify.yml @ZcashFoundation/devops-reviewers
|
||||||
/docker/ @ZcashFoundation/devops-reviewers
|
/docker/ @ZcashFoundation/devops-reviewers
|
||||||
cloudbuild.yaml @ZcashFoundation/devops-reviewers
|
cloudbuild.yaml @ZcashFoundation/devops-reviewers
|
||||||
codecov.yml @ZcashFoundation/devops-reviewers
|
codecov.yml @ZcashFoundation/devops-reviewers
|
||||||
.dockerignore @ZcashFoundation/devops-reviewers
|
.dockerignore @ZcashFoundation/devops-reviewers
|
||||||
codecov.yml @ZcashFoundation/devops-reviewers
|
|
||||||
firebase.json @ZcashFoundation/devops-reviewers
|
firebase.json @ZcashFoundation/devops-reviewers
|
||||||
katex-header.html @ZcashFoundation/devops-reviewers
|
katex-header.html @ZcashFoundation/devops-reviewers
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue