@@ -20,8 +20,6 @@ allow-unauthenticated = [
20
20
" AsyncAwait-OnDeck" ,
21
21
]
22
22
23
- [assign ]
24
-
25
23
[glacier ]
26
24
27
25
[ping .icebreakers-llvm ]
@@ -246,6 +244,9 @@ trigger_files = [
246
244
" src/version"
247
245
]
248
246
247
+ [autolabel ."S-waiting-on-review" ]
248
+ new_pr = true
249
+
249
250
[notify-zulip ."I-prioritize" ]
250
251
zulip_stream = 245100 # #t-compiler/wg-prioritization/alerts
251
252
topic = " #{number} {title}"
@@ -420,3 +421,157 @@ cc = ["@davidtwco", "@compiler-errors", "@JohnTitor", "@estebank", "@TaKO8Ki"]
420
421
[mentions ."compiler/rustc_macros/src/diagnostics" ]
421
422
message = " `rustc_macros::diagnostics` was changed"
422
423
cc = [" @davidtwco" , " @compiler-errors" , " @JohnTitor" , " @estebank" , " @TaKO8Ki" ]
424
+
425
+ [assign ]
426
+ warn_non_default_branch = true
427
+ contributing_url = " https://rustc-dev-guide.rust-lang.org/contributing.html"
428
+
429
+ [assign .adhoc_groups ]
430
+ compiler-team = [
431
+ " @cjgillot" ,
432
+ " @estebank" ,
433
+ " @petrochenkov" ,
434
+ " @davidtwco" ,
435
+ " @oli-obk" ,
436
+ " @lcnr" ,
437
+ " @nagisa" ,
438
+ " @wesleywiser" ,
439
+ ]
440
+ compiler-team-contributors = [
441
+ " @compiler-errors" ,
442
+ " @eholk" ,
443
+ " @jackh726" ,
444
+ " @fee1-dead" ,
445
+ " @TaKO8Ki" ,
446
+ ]
447
+ compiler = [
448
+ " compiler-team" ,
449
+ " compiler-team-contributors" ,
450
+ ]
451
+ libs = [
452
+ " @joshtriplett" ,
453
+ " @Mark-Simulacrum" ,
454
+ " @m-ou-se" ,
455
+ " @thomcc" ,
456
+ ]
457
+ bootstrap = [
458
+ " @Mark-Simulacrum" ,
459
+ " @jyn514" ,
460
+ ]
461
+ infra-ci = [
462
+ " @Mark-Simulacrum" ,
463
+ " @pietroalbini" ,
464
+ " @jyn514" ,
465
+ ]
466
+ rustdoc = [
467
+ " @jsha" ,
468
+ " @GuillaumeGomez" ,
469
+ " @CraftSpider" ,
470
+ " @notriddle" ,
471
+ ]
472
+ docs = [
473
+ " @ehuss" ,
474
+ " @GuillaumeGomez" ,
475
+ " @JohnTitor" ,
476
+ ]
477
+ query-system = [
478
+ " @cjgillot" ,
479
+ ]
480
+ incremental = [
481
+ " @michaelwoerister" ,
482
+ " @wesleywiser" ,
483
+ ]
484
+ diagnostics = [
485
+ " @compiler-errors" ,
486
+ " @davidtwco" ,
487
+ " @estebank" ,
488
+ " @oli-obk" ,
489
+ " @TaKO8Ki" ,
490
+ ]
491
+ parser = [
492
+ " @davidtwco" ,
493
+ " @estebank" ,
494
+ " @nnethercote" ,
495
+ " @petrochenkov" ,
496
+ ]
497
+ lexer = [
498
+ " @nnethercote" ,
499
+ " @petrochenkov" ,
500
+ ]
501
+ mir = [
502
+ " @davidtwco" ,
503
+ " @oli-obk" ,
504
+ ]
505
+ mir-opt = [
506
+ " @nagisa" ,
507
+ " @oli-obk" ,
508
+ " @wesleywiser" ,
509
+ ]
510
+ types = [
511
+ " @compiler-errors" ,
512
+ " @jackh726" ,
513
+ " @lcnr" ,
514
+ " @oli-obk" ,
515
+ " @spastorino" ,
516
+ ]
517
+ borrowck = [
518
+ " @davidtwco" ,
519
+ " @pnkfelix" ,
520
+ ]
521
+ ast_lowering = [
522
+ " @spastorino" ,
523
+ ]
524
+ fallback = [
525
+ " @Mark-Simulacrum"
526
+ ]
527
+
528
+ [assign .owners ]
529
+ "/.github/workflows" = [" infra-ci" ]
530
+ "/Cargo.lock" = [" @Mark-Simulacrum" ]
531
+ "/Cargo.toml" = [" @Mark-Simulacrum" ]
532
+ "/compiler" = [" compiler" ]
533
+ "/compiler/rustc_apfloat" = [" @eddyb" ]
534
+ "/compiler/rustc_ast" = [" compiler" , " parser" ]
535
+ "/compiler/rustc_ast_lowering" = [" compiler" , " ast_lowering" ]
536
+ "/compiler/rustc_hir_analysis" = [" compiler" , " types" ]
537
+ "/compiler/rustc_lexer" = [" compiler" , " lexer" ]
538
+ "/compiler/rustc_llvm" = [" @cuviper" ]
539
+ "/compiler/rustc_middle/src/mir" = [" compiler" , " mir" ]
540
+ "/compiler/rustc_middle/src/traits" = [" compiler" , " types" ]
541
+ "/compiler/rustc_const_eval/src/interpret" = [" compiler" , " mir" ]
542
+ "/compiler/rustc_const_eval/src/transform" = [" compiler" , " mir-opt" ]
543
+ "/compiler/rustc_mir_build/src/build" = [" compiler" , " mir" ]
544
+ "/compiler/rustc_parse" = [" compiler" , " parser" ]
545
+ "/compiler/rustc_parse/src/lexer" = [" compiler" , " lexer" ]
546
+ "/compiler/rustc_query_impl" = [" compiler" , " query-system" ]
547
+ "/compiler/rustc_query_system" = [" compiler" , " query-system" ]
548
+ "/compiler/rustc_trait_selection" = [" compiler" , " types" ]
549
+ "/compiler/rustc_traits" = [" compiler" , " types" ]
550
+ "/compiler/rustc_type_ir" = [" compiler" , " types" ]
551
+ "/library/alloc" = [" libs" ]
552
+ "/library/core" = [" libs" , " @scottmcm" ]
553
+ "/library/panic_abort" = [" libs" ]
554
+ "/library/panic_unwind" = [" libs" ]
555
+ "/library/proc_macro" = [" @petrochenkov" ]
556
+ "/library/std" = [" libs" ]
557
+ "/library/std/src/sys/windows" = [" @ChrisDenton" , " @thomcc" ]
558
+ "/library/stdarch" = [" libs" ]
559
+ "/library/test" = [" libs" ]
560
+ "/src/bootstrap" = [" bootstrap" ]
561
+ "/src/ci" = [" infra-ci" ]
562
+ "/src/doc" = [" docs" ]
563
+ "/src/doc/rustdoc" = [" rustdoc" ]
564
+ "/src/etc" = [" @Mark-Simulacrum" ]
565
+ "/src/librustdoc" = [" rustdoc" ]
566
+ "/src/llvm-project" = [" @cuviper" ]
567
+ "/src/rustdoc-json-types" = [" rustdoc" ]
568
+ "/src/stage0.json" = [" bootstrap" ]
569
+ "/src/tools/cargo" = [" @ehuss" , " @joshtriplett" ]
570
+ "/src/tools/compiletest" = [" bootstrap" ]
571
+ "/src/tools/linkchecker" = [" @ehuss" ]
572
+ "/src/tools/rust-installer" = [" bootstrap" ]
573
+ "/src/tools/rustbook" = [" @ehuss" ]
574
+ "/src/tools/rustdoc" = [" rustdoc" ]
575
+ "/src/tools/rustdoc-js" = [" rustdoc" ]
576
+ "/src/tools/rustdoc-themes" = [" rustdoc" ]
577
+ "/src/tools/tidy" = [" bootstrap" ]
0 commit comments