Skip to content

Commit 8325f3d

Browse files
authored
Rollup merge of #120299 - michaelwoerister:review-rotation-update, r=davidtwco
Add mw to review rotation and add some owner assignments I've also added a `debuginfo` group and fixed the ownership assignment for the `incremental` group. I hope I got the syntax right. r? ``@davidtwco``
2 parents 7403d58 + db4cf5d commit 8325f3d

File tree

1 file changed

+73
-63
lines changed

1 file changed

+73
-63
lines changed

triagebot.toml

+73-63
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,7 @@ compiler-team = [
646646
"@estebank",
647647
"@oli-obk",
648648
"@wesleywiser",
649+
"@michaelwoerister",
649650
]
650651
compiler-team-contributors = [
651652
"@TaKO8Ki",
@@ -738,6 +739,10 @@ ast_lowering = [
738739
"@estebank",
739740
"@spastorino",
740741
]
742+
debuginfo = [
743+
"@michaelwoerister",
744+
"@davidtwco"
745+
]
741746
fallback = [
742747
"@Mark-Simulacrum"
743748
]
@@ -761,66 +766,71 @@ project-stable-mir = [
761766
]
762767

763768
[assign.owners]
764-
"/.github/workflows" = ["infra-ci"]
765-
"/Cargo.lock" = ["@Mark-Simulacrum"]
766-
"/Cargo.toml" = ["@Mark-Simulacrum"]
767-
"/compiler" = ["compiler"]
768-
"/compiler/rustc_arena" = ["compiler", "arena"]
769-
"/compiler/rustc_ast" = ["compiler", "parser"]
770-
"/compiler/rustc_ast_lowering" = ["compiler", "ast_lowering"]
771-
"/compiler/rustc_hir_analysis" = ["compiler", "types"]
772-
"/compiler/rustc_lexer" = ["compiler", "lexer"]
773-
"/compiler/rustc_llvm" = ["@cuviper"]
774-
"/compiler/rustc_middle/src/mir" = ["compiler", "mir"]
775-
"/compiler/rustc_middle/src/traits" = ["compiler", "types"]
776-
"/compiler/rustc_middle/src/ty" = ["compiler", "types"]
777-
"/compiler/rustc_const_eval/src/interpret" = ["compiler", "mir"]
778-
"/compiler/rustc_const_eval/src/transform" = ["compiler", "mir-opt"]
779-
"/compiler/rustc_mir_build/src/build" = ["compiler", "mir"]
780-
"/compiler/rustc_smir" = ["project-stable-mir"]
781-
"/compiler/rustc_parse" = ["compiler", "parser"]
782-
"/compiler/rustc_parse/src/lexer" = ["compiler", "lexer"]
783-
"/compiler/rustc_query_impl" = ["compiler", "query-system"]
784-
"/compiler/rustc_query_system" = ["compiler", "query-system"]
785-
"/compiler/rustc_trait_selection" = ["compiler", "types"]
786-
"/compiler/rustc_traits" = ["compiler", "types"]
787-
"/compiler/rustc_type_ir" = ["compiler", "types"]
788-
"/compiler/stable_mir" = ["project-stable-mir"]
789-
"/library/alloc" = ["libs"]
790-
"/library/core" = ["libs"]
791-
"/library/panic_abort" = ["libs"]
792-
"/library/panic_unwind" = ["libs"]
793-
"/library/proc_macro" = ["@petrochenkov"]
794-
"/library/std" = ["libs"]
795-
"/library/std/src/sys/pal/windows" = ["@ChrisDenton", "@thomcc"]
796-
"/library/stdarch" = ["libs"]
797-
"/library/test" = ["libs"]
798-
"/src/bootstrap" = ["bootstrap"]
799-
"/src/ci" = ["infra-ci"]
800-
"/src/doc" = ["docs"]
801-
"/src/doc/book" = ["@ehuss"]
802-
"/src/doc/edition-guide" = ["@ehuss"]
803-
"/src/doc/embedded-book" = ["@ehuss"]
804-
"/src/doc/nomicon" = ["@ehuss"]
805-
"/src/doc/reference" = ["@ehuss"]
806-
"/src/doc/rust-by-example" = ["@ehuss"]
807-
"/src/doc/rustc-dev-guide" = ["@ehuss"]
808-
"/src/doc/rustdoc" = ["rustdoc"]
809-
"/src/doc/style-guide" = ["style-team"]
810-
"/src/etc" = ["@Mark-Simulacrum"]
811-
"/src/librustdoc" = ["rustdoc"]
812-
"/src/llvm-project" = ["@cuviper"]
813-
"/src/rustdoc-json-types" = ["rustdoc"]
814-
"/src/stage0.json" = ["bootstrap"]
815-
"/tests/ui" = ["compiler"]
816-
"/src/tools/cargo" = ["@ehuss", "@joshtriplett"]
817-
"/src/tools/compiletest" = ["bootstrap", "@wesleywiser", "@oli-obk", "@compiler-errors"]
818-
"/src/tools/linkchecker" = ["@ehuss"]
819-
"/src/tools/rust-installer" = ["bootstrap"]
820-
"/src/tools/rustbook" = ["@ehuss"]
821-
"/src/tools/rustdoc" = ["rustdoc"]
822-
"/src/tools/rustdoc-js" = ["rustdoc"]
823-
"/src/tools/rustdoc-themes" = ["rustdoc"]
824-
"/src/tools/tidy" = ["bootstrap"]
825-
"/src/tools/x" = ["bootstrap"]
826-
"/src/tools/rustdoc-gui-test" = ["bootstrap", "@onur-ozkan"]
769+
"/.github/workflows" = ["infra-ci"]
770+
"/Cargo.lock" = ["@Mark-Simulacrum"]
771+
"/Cargo.toml" = ["@Mark-Simulacrum"]
772+
"/compiler" = ["compiler"]
773+
"/compiler/rustc_arena" = ["compiler", "arena"]
774+
"/compiler/rustc_ast" = ["compiler", "parser"]
775+
"/compiler/rustc_ast_lowering" = ["compiler", "ast_lowering"]
776+
"/compiler/rustc_data_structures/src/stable_hasher.rs" = ["compiler", "incremental"]
777+
"/compiler/rustc_hir_analysis" = ["compiler", "types"]
778+
"/compiler/rustc_incremental" = ["compiler", "incremental"]
779+
"/compiler/rustc_lexer" = ["compiler", "lexer"]
780+
"/compiler/rustc_llvm" = ["@cuviper"]
781+
"/compiler/rustc_codegen_llvm/src/debuginfo" = ["compiler", "debuginfo"]
782+
"/compiler/rustc_middle/src/mir" = ["compiler", "mir"]
783+
"/compiler/rustc_middle/src/traits" = ["compiler", "types"]
784+
"/compiler/rustc_middle/src/ty" = ["compiler", "types"]
785+
"/compiler/rustc_const_eval/src/interpret" = ["compiler", "mir"]
786+
"/compiler/rustc_const_eval/src/transform" = ["compiler", "mir-opt"]
787+
"/compiler/rustc_mir_build/src/build" = ["compiler", "mir"]
788+
"/compiler/rustc_smir" = ["project-stable-mir"]
789+
"/compiler/rustc_parse" = ["compiler", "parser"]
790+
"/compiler/rustc_parse/src/lexer" = ["compiler", "lexer"]
791+
"/compiler/rustc_query_impl" = ["compiler", "query-system"]
792+
"/compiler/rustc_query_system" = ["compiler", "query-system"]
793+
"/compiler/rustc_query_system/src/dep_graph" = ["compiler", "incremental", "query-system"]
794+
"/compiler/rustc_query_system/src/ich" = ["compiler", "incremental", "query-system"]
795+
"/compiler/rustc_trait_selection" = ["compiler", "types"]
796+
"/compiler/rustc_traits" = ["compiler", "types"]
797+
"/compiler/rustc_type_ir" = ["compiler", "types"]
798+
"/compiler/stable_mir" = ["project-stable-mir"]
799+
"/library/alloc" = ["libs"]
800+
"/library/core" = ["libs"]
801+
"/library/panic_abort" = ["libs"]
802+
"/library/panic_unwind" = ["libs"]
803+
"/library/proc_macro" = ["@petrochenkov"]
804+
"/library/std" = ["libs"]
805+
"/library/std/src/sys/pal/windows" = ["@ChrisDenton", "@thomcc"]
806+
"/library/stdarch" = ["libs"]
807+
"/library/test" = ["libs"]
808+
"/src/bootstrap" = ["bootstrap"]
809+
"/src/ci" = ["infra-ci"]
810+
"/src/doc" = ["docs"]
811+
"/src/doc/book" = ["@ehuss"]
812+
"/src/doc/edition-guide" = ["@ehuss"]
813+
"/src/doc/embedded-book" = ["@ehuss"]
814+
"/src/doc/nomicon" = ["@ehuss"]
815+
"/src/doc/reference" = ["@ehuss"]
816+
"/src/doc/rust-by-example" = ["@ehuss"]
817+
"/src/doc/rustc-dev-guide" = ["@ehuss"]
818+
"/src/doc/rustdoc" = ["rustdoc"]
819+
"/src/doc/style-guide" = ["style-team"]
820+
"/src/etc" = ["@Mark-Simulacrum"]
821+
"/src/librustdoc" = ["rustdoc"]
822+
"/src/llvm-project" = ["@cuviper"]
823+
"/src/rustdoc-json-types" = ["rustdoc"]
824+
"/src/stage0.json" = ["bootstrap"]
825+
"/tests/ui" = ["compiler"]
826+
"/src/tools/cargo" = ["@ehuss", "@joshtriplett"]
827+
"/src/tools/compiletest" = ["bootstrap", "@wesleywiser", "@oli-obk", "@compiler-errors"]
828+
"/src/tools/linkchecker" = ["@ehuss"]
829+
"/src/tools/rust-installer" = ["bootstrap"]
830+
"/src/tools/rustbook" = ["@ehuss"]
831+
"/src/tools/rustdoc" = ["rustdoc"]
832+
"/src/tools/rustdoc-js" = ["rustdoc"]
833+
"/src/tools/rustdoc-themes" = ["rustdoc"]
834+
"/src/tools/tidy" = ["bootstrap"]
835+
"/src/tools/x" = ["bootstrap"]
836+
"/src/tools/rustdoc-gui-test" = ["bootstrap", "@onur-ozkan"]

0 commit comments

Comments
 (0)