Skip to content

Commit eabfe45

Browse files
Add mw to review rotation and add some owner assignments
1 parent f6ee4bf commit eabfe45

File tree

1 file changed

+72
-63
lines changed

1 file changed

+72
-63
lines changed

triagebot.toml

+72-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,9 @@ ast_lowering = [
738739
"@estebank",
739740
"@spastorino",
740741
]
742+
debuginfo = [
743+
"@michaelwoerister",
744+
]
741745
fallback = [
742746
"@Mark-Simulacrum"
743747
]
@@ -761,66 +765,71 @@ project-stable-mir = [
761765
]
762766

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

0 commit comments

Comments
 (0)