about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJuniper Tyree <50025784+juntyr@users.noreply.github.com>2024-10-21 05:30:07 +0300
committerGitHub <noreply@github.com>2024-10-21 10:30:07 +0800
commitdd35c1b5f4b4783fc37f5953aada20ad0a6af5cd (patch)
treefecde61e5cc45d31bd2f8cb37c2b17057f9acd34
parent2cf74e2b875c4500f42dc6f0e92a2df89ce19256 (diff)
downloadrust-dd35c1b5f4b4783fc37f5953aada20ad0a6af5cd.tar.gz
rust-dd35c1b5f4b4783fc37f5953aada20ad0a6af5cd.zip
Add the WASM | WASI | Emscripten notification groups (#2100)
-rw-r--r--src/doc/rustc-dev-guide/src/SUMMARY.md3
-rw-r--r--src/doc/rustc-dev-guide/src/notification-groups/about.md14
-rw-r--r--src/doc/rustc-dev-guide/src/notification-groups/emscripten.md23
-rw-r--r--src/doc/rustc-dev-guide/src/notification-groups/wasi.md23
-rw-r--r--src/doc/rustc-dev-guide/src/notification-groups/wasm.md23
5 files changed, 84 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/SUMMARY.md b/src/doc/rustc-dev-guide/src/SUMMARY.md
index 6bc19e62d8a..a51fcee9064 100644
--- a/src/doc/rustc-dev-guide/src/SUMMARY.md
+++ b/src/doc/rustc-dev-guide/src/SUMMARY.md
@@ -58,8 +58,11 @@
     - [Apple](notification-groups/apple.md)
     - [ARM](notification-groups/arm.md)
     - [Cleanup Crew](notification-groups/cleanup-crew.md)
+    - [Emscripten](notification-groups/emscripten.md)
     - [LLVM](notification-groups/llvm.md)
     - [RISC-V](notification-groups/risc-v.md)
+    - [WASI](notification-groups/wasi.md)
+    - [WebAssembly](notification-groups/wasm.md)
     - [Windows](notification-groups/windows.md)
     - [Rust for Linux](notification-groups/rust-for-linux.md)
 - [Licenses](./licenses.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 23a8d7f7995..77bd868d180 100644
--- a/src/doc/rustc-dev-guide/src/notification-groups/about.md
+++ b/src/doc/rustc-dev-guide/src/notification-groups/about.md
@@ -22,8 +22,11 @@ Here's the list of the notification groups:
 - [Apple](./apple.md)
 - [ARM](./arm.md)
 - [Cleanup Crew](./cleanup-crew.md)
+- [Emscripten](./emscripten.md)
 - [LLVM](./llvm.md)
 - [RISC-V](./risc-v.md)
+- [WASI](./wasi.md)
+- [WebAssembly](./wasm.md)
 - [Windows](./windows.md)
 - [Rust for Linux](./rust-for-linux.md)
 
@@ -62,8 +65,11 @@ Example PRs:
 * [Example of adding yourself to the Apple group.](https://github.com/rust-lang/team/pull/1434)
 * [Example of adding yourself to the ARM group.](https://github.com/rust-lang/team/pull/358)
 * [Example of adding yourself to the Cleanup Crew.](https://github.com/rust-lang/team/pull/221)
+* [Example of adding yourself to the Emscripten group.](https://github.com/rust-lang/team/pull/1579)
 * [Example of adding yourself to the LLVM group.](https://github.com/rust-lang/team/pull/140)
 * [Example of adding yourself to the RISC-V group.](https://github.com/rust-lang/team/pull/394)
+* [Example of adding yourself to the WASI group.](https://github.com/rust-lang/team/pull/1580)
+* [Example of adding yourself to the WebAssembly group.](https://github.com/rust-lang/team/pull/1581)
 * [Example of adding yourself to the Windows group.](https://github.com/rust-lang/team/pull/348)
 
 ## Tagging an issue for a notification group
@@ -74,10 +80,14 @@ group. For example:
 
 ```text
 @rustbot ping apple
-@rustbot ping llvm
+@rustbot ping arm
 @rustbot ping cleanup-crew
+@rustbot ping emscripten
+@rustbot ping llvm
+@rustbot ping risc-v
+@rustbot ping wasi
+@rustbot ping wasm
 @rustbot ping windows
-@rustbot ping arm
 ```
 
 To make some commands shorter and easier to remember, there are aliases,
diff --git a/src/doc/rustc-dev-guide/src/notification-groups/emscripten.md b/src/doc/rustc-dev-guide/src/notification-groups/emscripten.md
new file mode 100644
index 00000000000..100dbdf9f2b
--- /dev/null
+++ b/src/doc/rustc-dev-guide/src/notification-groups/emscripten.md
@@ -0,0 +1,23 @@
+# Emscripten notification group
+
+**Github Label:** [O-emscripten] <br>
+**Ping command:** `@rustbot ping emscripten`
+
+[O-emscripten]: https://github.com/rust-lang/rust/labels/O-emscripten
+
+This list will be used to ask for help both in diagnosing and testing
+Emscripten-related issues as well as suggestions on how to resolve
+interesting questions regarding our Emscripten support.
+
+The group also has an associated Zulip stream ([`#t-compiler/wasm`])
+where people can go to pose questions and discuss Emscripten-specific
+topics.
+
+So, if you are interested in participating, please sign up for the
+Emscripten group! To do so, open a PR against the [rust-lang/team]
+repository. Just [follow this example][eg], but change the username to
+your own!
+
+[`#t-compiler/wasm`]: https://rust-lang.zulipchat.com/#narrow/stream/463513-t-compiler.2Fwasm
+[rust-lang/team]: https://github.com/rust-lang/team
+[eg]: https://github.com/rust-lang/team/pull/1579
diff --git a/src/doc/rustc-dev-guide/src/notification-groups/wasi.md b/src/doc/rustc-dev-guide/src/notification-groups/wasi.md
new file mode 100644
index 00000000000..e438ee4bd09
--- /dev/null
+++ b/src/doc/rustc-dev-guide/src/notification-groups/wasi.md
@@ -0,0 +1,23 @@
+# WASI notification group
+
+**Github Label:** [O-wasi] <br>
+**Ping command:** `@rustbot ping wasi`
+
+[O-wasi]: https://github.com/rust-lang/rust/labels/O-wasi
+
+This list will be used to ask for help both in diagnosing and testing
+WASI-related issues as well as suggestions on how to resolve
+interesting questions regarding our WASI support.
+
+The group also has an associated Zulip stream ([`#t-compiler/wasm`])
+where people can go to pose questions and discuss WASI-specific
+topics.
+
+So, if you are interested in participating, please sign up for the
+WASI group! To do so, open a PR against the [rust-lang/team]
+repository. Just [follow this example][eg], but change the username to
+your own!
+
+[`#t-compiler/wasm`]: https://rust-lang.zulipchat.com/#narrow/stream/463513-t-compiler.2Fwasm
+[rust-lang/team]: https://github.com/rust-lang/team
+[eg]: https://github.com/rust-lang/team/pull/1580
diff --git a/src/doc/rustc-dev-guide/src/notification-groups/wasm.md b/src/doc/rustc-dev-guide/src/notification-groups/wasm.md
new file mode 100644
index 00000000000..c8b674cb93f
--- /dev/null
+++ b/src/doc/rustc-dev-guide/src/notification-groups/wasm.md
@@ -0,0 +1,23 @@
+# WebAssembly (WASM) notification group
+
+**Github Label:** [O-wasm] <br>
+**Ping command:** `@rustbot ping wasm`
+
+[O-wasm]: https://github.com/rust-lang/rust/labels/O-wasm
+
+This list will be used to ask for help both in diagnosing and testing
+WebAssembly-related issues as well as suggestions on how to resolve
+interesting questions regarding our WASM support.
+
+The group also has an associated Zulip stream ([`#t-compiler/wasm`])
+where people can go to pose questions and discuss WASM-specific
+topics.
+
+So, if you are interested in participating, please sign up for the
+WASM group! To do so, open a PR against the [rust-lang/team]
+repository. Just [follow this example][eg], but change the username to
+your own!
+
+[`#t-compiler/wasm`]: https://rust-lang.zulipchat.com/#narrow/stream/463513-t-compiler.2Fwasm
+[rust-lang/team]: https://github.com/rust-lang/team
+[eg]: https://github.com/rust-lang/team/pull/1581