diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2025-05-18 11:03:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-18 11:03:48 +0200 |
| commit | c7e2e88da00a47346b76629ca3f72bf3a49d2bbf (patch) | |
| tree | 1d4c6dfa318a2fc89e43816fbc80b84ac503aa7f | |
| parent | b89118aed836b745ca85e9d0b17ee914601deb7a (diff) | |
| parent | 2dddbd1ecb586b7a7dc67c078c2f7785a5cb63ba (diff) | |
| download | rust-c7e2e88da00a47346b76629ca3f72bf3a49d2bbf.tar.gz rust-c7e2e88da00a47346b76629ca3f72bf3a49d2bbf.zip | |
Rollup merge of #141139 - jieyouxu:fix-rfl, r=Urgau
Fix Rust for Linux ping group label Noticed in https://github.com/rust-lang/rust/pull/140966#issuecomment-2886704667. Seems like a broken label can cause the triagebot ping message to not be issued. See https://github.com/rust-lang/triagebot/issues/1992. ```@rustbot``` label: +A-rust-for-linux
| -rw-r--r-- | src/doc/rustc-dev-guide/src/notification-groups/rust-for-linux.md | 4 | ||||
| -rw-r--r-- | triagebot.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/notification-groups/rust-for-linux.md b/src/doc/rustc-dev-guide/src/notification-groups/rust-for-linux.md index 9ba4eff629e..696f2038e1a 100644 --- a/src/doc/rustc-dev-guide/src/notification-groups/rust-for-linux.md +++ b/src/doc/rustc-dev-guide/src/notification-groups/rust-for-linux.md @@ -1,9 +1,9 @@ # Rust for Linux notification group -**Github Label:** [O-rfl] <br> +**Github Label:** [A-rust-for-linux] <br> **Ping command:** `@rustbot ping rfl` -[O-rfl]: https://github.com/rust-lang/rust/labels/O-rfl +[A-rust-for-linux]: https://github.com/rust-lang/rust/labels/A-rust-for-linux This list will be used to notify [Rust for Linux (RfL)][rfl] maintainers when the compiler or the standard library changes in a way that would diff --git a/triagebot.toml b/triagebot.toml index 36d5838d1e1..3afa2d36410 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -133,7 +133,7 @@ In case it's useful, here are some [instructions] for tackling these sorts of is [instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/rust-for-linux.html """ -label = "O-rfl" +label = "A-rust-for-linux" [ping.wasm] alias = ["webassembly"] |
