mirror of https://github.com/rust-lang/rust.git
Add mw to review rotation and add some owner assignments
This commit is contained in:
parent
f6ee4bf384
commit
eabfe455ec
135
triagebot.toml
135
triagebot.toml
|
@ -646,6 +646,7 @@ compiler-team = [
|
|||
"@estebank",
|
||||
"@oli-obk",
|
||||
"@wesleywiser",
|
||||
"@michaelwoerister",
|
||||
]
|
||||
compiler-team-contributors = [
|
||||
"@TaKO8Ki",
|
||||
|
@ -738,6 +739,9 @@ ast_lowering = [
|
|||
"@estebank",
|
||||
"@spastorino",
|
||||
]
|
||||
debuginfo = [
|
||||
"@michaelwoerister",
|
||||
]
|
||||
fallback = [
|
||||
"@Mark-Simulacrum"
|
||||
]
|
||||
|
@ -761,66 +765,71 @@ project-stable-mir = [
|
|||
]
|
||||
|
||||
[assign.owners]
|
||||
"/.github/workflows" = ["infra-ci"]
|
||||
"/Cargo.lock" = ["@Mark-Simulacrum"]
|
||||
"/Cargo.toml" = ["@Mark-Simulacrum"]
|
||||
"/compiler" = ["compiler"]
|
||||
"/compiler/rustc_arena" = ["compiler", "arena"]
|
||||
"/compiler/rustc_ast" = ["compiler", "parser"]
|
||||
"/compiler/rustc_ast_lowering" = ["compiler", "ast_lowering"]
|
||||
"/compiler/rustc_hir_analysis" = ["compiler", "types"]
|
||||
"/compiler/rustc_lexer" = ["compiler", "lexer"]
|
||||
"/compiler/rustc_llvm" = ["@cuviper"]
|
||||
"/compiler/rustc_middle/src/mir" = ["compiler", "mir"]
|
||||
"/compiler/rustc_middle/src/traits" = ["compiler", "types"]
|
||||
"/compiler/rustc_middle/src/ty" = ["compiler", "types"]
|
||||
"/compiler/rustc_const_eval/src/interpret" = ["compiler", "mir"]
|
||||
"/compiler/rustc_const_eval/src/transform" = ["compiler", "mir-opt"]
|
||||
"/compiler/rustc_mir_build/src/build" = ["compiler", "mir"]
|
||||
"/compiler/rustc_smir" = ["project-stable-mir"]
|
||||
"/compiler/rustc_parse" = ["compiler", "parser"]
|
||||
"/compiler/rustc_parse/src/lexer" = ["compiler", "lexer"]
|
||||
"/compiler/rustc_query_impl" = ["compiler", "query-system"]
|
||||
"/compiler/rustc_query_system" = ["compiler", "query-system"]
|
||||
"/compiler/rustc_trait_selection" = ["compiler", "types"]
|
||||
"/compiler/rustc_traits" = ["compiler", "types"]
|
||||
"/compiler/rustc_type_ir" = ["compiler", "types"]
|
||||
"/compiler/stable_mir" = ["project-stable-mir"]
|
||||
"/library/alloc" = ["libs"]
|
||||
"/library/core" = ["libs"]
|
||||
"/library/panic_abort" = ["libs"]
|
||||
"/library/panic_unwind" = ["libs"]
|
||||
"/library/proc_macro" = ["@petrochenkov"]
|
||||
"/library/std" = ["libs"]
|
||||
"/library/std/src/sys/pal/windows" = ["@ChrisDenton", "@thomcc"]
|
||||
"/library/stdarch" = ["libs"]
|
||||
"/library/test" = ["libs"]
|
||||
"/src/bootstrap" = ["bootstrap"]
|
||||
"/src/ci" = ["infra-ci"]
|
||||
"/src/doc" = ["docs"]
|
||||
"/src/doc/book" = ["@ehuss"]
|
||||
"/src/doc/edition-guide" = ["@ehuss"]
|
||||
"/src/doc/embedded-book" = ["@ehuss"]
|
||||
"/src/doc/nomicon" = ["@ehuss"]
|
||||
"/src/doc/reference" = ["@ehuss"]
|
||||
"/src/doc/rust-by-example" = ["@ehuss"]
|
||||
"/src/doc/rustc-dev-guide" = ["@ehuss"]
|
||||
"/src/doc/rustdoc" = ["rustdoc"]
|
||||
"/src/doc/style-guide" = ["style-team"]
|
||||
"/src/etc" = ["@Mark-Simulacrum"]
|
||||
"/src/librustdoc" = ["rustdoc"]
|
||||
"/src/llvm-project" = ["@cuviper"]
|
||||
"/src/rustdoc-json-types" = ["rustdoc"]
|
||||
"/src/stage0.json" = ["bootstrap"]
|
||||
"/tests/ui" = ["compiler"]
|
||||
"/src/tools/cargo" = ["@ehuss", "@joshtriplett"]
|
||||
"/src/tools/compiletest" = ["bootstrap", "@wesleywiser", "@oli-obk", "@compiler-errors"]
|
||||
"/src/tools/linkchecker" = ["@ehuss"]
|
||||
"/src/tools/rust-installer" = ["bootstrap"]
|
||||
"/src/tools/rustbook" = ["@ehuss"]
|
||||
"/src/tools/rustdoc" = ["rustdoc"]
|
||||
"/src/tools/rustdoc-js" = ["rustdoc"]
|
||||
"/src/tools/rustdoc-themes" = ["rustdoc"]
|
||||
"/src/tools/tidy" = ["bootstrap"]
|
||||
"/src/tools/x" = ["bootstrap"]
|
||||
"/src/tools/rustdoc-gui-test" = ["bootstrap", "@onur-ozkan"]
|
||||
"/.github/workflows" = ["infra-ci"]
|
||||
"/Cargo.lock" = ["@Mark-Simulacrum"]
|
||||
"/Cargo.toml" = ["@Mark-Simulacrum"]
|
||||
"/compiler" = ["compiler"]
|
||||
"/compiler/rustc_arena" = ["compiler", "arena"]
|
||||
"/compiler/rustc_ast" = ["compiler", "parser"]
|
||||
"/compiler/rustc_ast_lowering" = ["compiler", "ast_lowering"]
|
||||
"/compiler/rustc_data_structures/src/stable_hasher.rs" = ["compiler", "incremental"]
|
||||
"/compiler/rustc_hir_analysis" = ["compiler", "types"]
|
||||
"/compiler/rustc_incremental" = ["compiler", "incremental"]
|
||||
"/compiler/rustc_lexer" = ["compiler", "lexer"]
|
||||
"/compiler/rustc_llvm" = ["@cuviper"]
|
||||
"/compiler/rustc_codegen_llvm/src/debuginfo" = ["compiler", "debuginfo"]
|
||||
"/compiler/rustc_middle/src/mir" = ["compiler", "mir"]
|
||||
"/compiler/rustc_middle/src/traits" = ["compiler", "types"]
|
||||
"/compiler/rustc_middle/src/ty" = ["compiler", "types"]
|
||||
"/compiler/rustc_const_eval/src/interpret" = ["compiler", "mir"]
|
||||
"/compiler/rustc_const_eval/src/transform" = ["compiler", "mir-opt"]
|
||||
"/compiler/rustc_mir_build/src/build" = ["compiler", "mir"]
|
||||
"/compiler/rustc_smir" = ["project-stable-mir"]
|
||||
"/compiler/rustc_parse" = ["compiler", "parser"]
|
||||
"/compiler/rustc_parse/src/lexer" = ["compiler", "lexer"]
|
||||
"/compiler/rustc_query_impl" = ["compiler", "query-system"]
|
||||
"/compiler/rustc_query_system" = ["compiler", "query-system"]
|
||||
"/compiler/rustc_query_system/src/dep_graph" = ["compiler", "incremental", "query-system"]
|
||||
"/compiler/rustc_query_system/src/ich" = ["compiler", "incremental", "query-system"]
|
||||
"/compiler/rustc_trait_selection" = ["compiler", "types"]
|
||||
"/compiler/rustc_traits" = ["compiler", "types"]
|
||||
"/compiler/rustc_type_ir" = ["compiler", "types"]
|
||||
"/compiler/stable_mir" = ["project-stable-mir"]
|
||||
"/library/alloc" = ["libs"]
|
||||
"/library/core" = ["libs"]
|
||||
"/library/panic_abort" = ["libs"]
|
||||
"/library/panic_unwind" = ["libs"]
|
||||
"/library/proc_macro" = ["@petrochenkov"]
|
||||
"/library/std" = ["libs"]
|
||||
"/library/std/src/sys/pal/windows" = ["@ChrisDenton", "@thomcc"]
|
||||
"/library/stdarch" = ["libs"]
|
||||
"/library/test" = ["libs"]
|
||||
"/src/bootstrap" = ["bootstrap"]
|
||||
"/src/ci" = ["infra-ci"]
|
||||
"/src/doc" = ["docs"]
|
||||
"/src/doc/book" = ["@ehuss"]
|
||||
"/src/doc/edition-guide" = ["@ehuss"]
|
||||
"/src/doc/embedded-book" = ["@ehuss"]
|
||||
"/src/doc/nomicon" = ["@ehuss"]
|
||||
"/src/doc/reference" = ["@ehuss"]
|
||||
"/src/doc/rust-by-example" = ["@ehuss"]
|
||||
"/src/doc/rustc-dev-guide" = ["@ehuss"]
|
||||
"/src/doc/rustdoc" = ["rustdoc"]
|
||||
"/src/doc/style-guide" = ["style-team"]
|
||||
"/src/etc" = ["@Mark-Simulacrum"]
|
||||
"/src/librustdoc" = ["rustdoc"]
|
||||
"/src/llvm-project" = ["@cuviper"]
|
||||
"/src/rustdoc-json-types" = ["rustdoc"]
|
||||
"/src/stage0.json" = ["bootstrap"]
|
||||
"/tests/ui" = ["compiler"]
|
||||
"/src/tools/cargo" = ["@ehuss", "@joshtriplett"]
|
||||
"/src/tools/compiletest" = ["bootstrap", "@wesleywiser", "@oli-obk", "@compiler-errors"]
|
||||
"/src/tools/linkchecker" = ["@ehuss"]
|
||||
"/src/tools/rust-installer" = ["bootstrap"]
|
||||
"/src/tools/rustbook" = ["@ehuss"]
|
||||
"/src/tools/rustdoc" = ["rustdoc"]
|
||||
"/src/tools/rustdoc-js" = ["rustdoc"]
|
||||
"/src/tools/rustdoc-themes" = ["rustdoc"]
|
||||
"/src/tools/tidy" = ["bootstrap"]
|
||||
"/src/tools/x" = ["bootstrap"]
|
||||
"/src/tools/rustdoc-gui-test" = ["bootstrap", "@onur-ozkan"]
|
||||
|
|
Loading…
Reference in New Issue