Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure triagebot to accept codegen-{gcc,cranelift} ping groups and document ping groups and ping commands #138120

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/doc/rustc-dev-guide/src/notification-groups/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Original file line number Diff line number Diff line change
@@ -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.
12 changes: 12 additions & 0 deletions triagebot.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
Loading