From e3857aca6ef31bdadcba5b6886e207a94c4d230c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E6=9D=B0=E5=8F=8B=20Jieyou=20Xu=20=28Joe=29?= <39484203+jieyouxu@users.noreply.github.com> Date: Fri, 7 Mar 2025 02:32:07 +0800 Subject: [PATCH 1/2] Configure triagebot to accept `codegen-{gcc,cranelift}` ping groups --- triagebot.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/triagebot.toml b/triagebot.toml index ff789e6e36265..972c9e8d35b05 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -178,6 +178,18 @@ Hi relnotes-interest-group, this PR adds release notes. Could you review this PR if you have time? Thanks <3 """ +[ping.codegen-gcc] +message = """\ +Hey GCC codegen backend team, this issue or PR could use some cg_gcc guidance. +Could one of you take a look? Thanks <3 +""" + +[ping.codegen-cranelift] +message = """\ +Hey cranelift codegen backend team, this issue or PR could use some cg_cranelift +guidance. Could one of you take a look? Thanks <3 +""" + [prioritize] label = "I-prioritize" From 1ae5bb0f61809688f667b6ef3ca5a523eb65c9e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E6=9D=B0=E5=8F=8B=20Jieyou=20Xu=20=28Joe=29?= <39484203+jieyouxu@users.noreply.github.com> Date: Fri, 7 Mar 2025 02:37:22 +0800 Subject: [PATCH 2/2] Document `codegen-{gcc,cranelift}` ping groups in rustc-dev-guide --- src/doc/rustc-dev-guide/src/notification-groups/about.md | 7 ++++++- .../src/notification-groups/codegen-cranelift.md | 5 +++++ .../rustc-dev-guide/src/notification-groups/codegen-gcc.md | 5 +++++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/doc/rustc-dev-guide/src/notification-groups/codegen-cranelift.md create mode 100644 src/doc/rustc-dev-guide/src/notification-groups/codegen-gcc.md diff --git a/src/doc/rustc-dev-guide/src/notification-groups/about.md b/src/doc/rustc-dev-guide/src/notification-groups/about.md index 74629aa08acec..435dd80bdeaf0 100644 --- a/src/doc/rustc-dev-guide/src/notification-groups/about.md +++ b/src/doc/rustc-dev-guide/src/notification-groups/about.md @@ -22,13 +22,15 @@ Here's the list of the notification groups: - [Apple](./apple.md) - [ARM](./arm.md) - [Cleanup Crew](./cleanup-crew.md) +- [codegen-cranelift](./codegen-cranelift.md) +- [codegen-gcc](./codegen-gcc.md) - [Emscripten](./emscripten.md) - [LLVM](./llvm.md) - [RISC-V](./risc-v.md) +- [Rust for Linux](./rust-for-linux.md) - [WASI](./wasi.md) - [WebAssembly](./wasm.md) - [Windows](./windows.md) -- [Rust for Linux](./rust-for-linux.md) ## What issues are a good fit for notification groups? @@ -82,9 +84,12 @@ group. For example: @rustbot ping apple @rustbot ping arm @rustbot ping cleanup-crew +@rustbot ping codegen-cranelift +@rustbot ping codegen-gcc @rustbot ping emscripten @rustbot ping llvm @rustbot ping risc-v +@rustbot ping rfl @rustbot ping wasi @rustbot ping wasm @rustbot ping windows diff --git a/src/doc/rustc-dev-guide/src/notification-groups/codegen-cranelift.md b/src/doc/rustc-dev-guide/src/notification-groups/codegen-cranelift.md new file mode 100644 index 0000000000000..d1ab224772064 --- /dev/null +++ b/src/doc/rustc-dev-guide/src/notification-groups/codegen-cranelift.md @@ -0,0 +1,5 @@ +# Cranelift codegen backend notification group + +**Ping command:** `@rustbot ping codegen-cranelift` + +This ping group is intended to ping the cranelift codegen backend team for guidance on a specific issue or PR. diff --git a/src/doc/rustc-dev-guide/src/notification-groups/codegen-gcc.md b/src/doc/rustc-dev-guide/src/notification-groups/codegen-gcc.md new file mode 100644 index 0000000000000..4a3d59eb2f8c5 --- /dev/null +++ b/src/doc/rustc-dev-guide/src/notification-groups/codegen-gcc.md @@ -0,0 +1,5 @@ +# GCC codegen backend notification group + +**Ping command:** `@rustbot ping codegen-gcc` + +This ping group is intended to ping the gcc codegen backend team for guidance on a specific issue or PR.