Skip to content

Commit 16e5db3

Browse files
louwersaduh95
authored andcommitted
doc: update teams in collaborator-guide.md and add links
PR-URL: #60065 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent 2fc1abf commit 16e5db3

File tree

1 file changed

+85
-42
lines changed

1 file changed

+85
-42
lines changed

doc/contributing/collaborator-guide.md

Lines changed: 85 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -869,50 +869,48 @@ might impact an LTS release.
869869

870870
## Who to CC in the issue tracker
871871

872-
| Subsystem | Maintainers |
873-
| -------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
874-
| `benchmark/*` | @nodejs/benchmarking, @mscdex |
875-
| `doc/*`, `*.md` | @nodejs/documentation |
876-
| `lib/assert` | @nodejs/assert |
877-
| `lib/async_hooks` | @nodejs/async\_hooks for bugs/reviews (+ @nodejs/diagnostics for API) |
878-
| `lib/buffer` | @nodejs/buffer |
879-
| `lib/child_process` | @nodejs/child\_process |
880-
| `lib/cluster` | @nodejs/cluster |
881-
| `lib/{crypto,tls,https}` | @nodejs/crypto |
882-
| `lib/dgram` | @nodejs/dgram |
883-
| `lib/domains` | @nodejs/domains |
884-
| `lib/fs`, `src/{fs,file}` | @nodejs/fs |
885-
| `lib/{_}http{*}` | @nodejs/http |
886-
| `lib/inspector.js`, `src/inspector_*` | @nodejs/v8-inspector |
887-
| `lib/internal/bootstrap/*` | @nodejs/process |
888-
| `lib/internal/url`, `src/node_url` | @nodejs/url |
889-
| `lib/net` | @bnoordhuis, @indutny, @nodejs/streams |
890-
| `lib/repl` | @nodejs/repl |
891-
| `lib/{_}stream{*}` | @nodejs/streams |
892-
| `lib/internal/test_runner` | @nodejs/test\_runner |
893-
| `lib/timers` | @nodejs/timers |
894-
| `lib/util` | @nodejs/util |
895-
| `lib/zlib` | @nodejs/zlib |
896-
| `src/async_wrap.*` | @nodejs/async\_hooks |
897-
| `src/node_api.*` | @nodejs/node-api |
898-
| `src/node_crypto.*`, `src/crypto` | @nodejs/crypto |
899-
| `test/*` | @nodejs/testing |
900-
| `tools/eslint`, `eslint.config.mjs` | @nodejs/linting |
901-
| build | @nodejs/build |
902-
| `src/module_wrap.*`, `lib/internal/modules/*`, `lib/internal/vm/module.js` | @nodejs/modules |
903-
| GYP | @nodejs/gyp |
904-
| performance | @nodejs/performance |
905-
| platform specific | @nodejs/platform-{aix,arm,freebsd,macos,ppc,smartos,s390,windows,windows-arm} |
906-
| python code | @nodejs/python |
907-
| upgrading c-ares | @rvagg |
908-
| upgrading http-parser | @nodejs/http, @nodejs/http2 |
909-
| upgrading libuv | @nodejs/libuv |
910-
| upgrading npm | @nodejs/npm |
911-
| upgrading V8 | @nodejs/V8, @nodejs/post-mortem |
912-
| Embedded use or delivery of Node.js | @nodejs/delivery-channels |
872+
| Subsystem | Maintainers |
873+
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
874+
| `benchmark/*` | [@nodejs/benchmarking][] |
875+
| `doc/*`, `*.md` | [@nodejs/documentation][] |
876+
| `lib/assert` | [@nodejs/assert][] |
877+
| `lib/async_hooks` | [@nodejs/async\_hooks][@nodejs/async_hooks] for bugs/reviews (+ [@nodejs/diagnostics][] for API) |
878+
| `lib/buffer` | [@nodejs/buffer][] |
879+
| `lib/child_process` | [@nodejs/child\_process][@nodejs/child_process] |
880+
| `lib/cluster` | [@nodejs/cluster][] |
881+
| `lib/{crypto,tls,https}` | [@nodejs/crypto][] |
882+
| `lib/dgram` | [@nodejs/dgram][] |
883+
| `lib/domains` | [@nodejs/domains][] |
884+
| `lib/fs`, `src/{fs,file}` | [@nodejs/fs][] |
885+
| `lib/{_}http{*}` | [@nodejs/http][] |
886+
| `lib/inspector.js`, `src/inspector_*` | [@nodejs/v8-inspector][] |
887+
| `lib/internal/bootstrap/*` | [@nodejs/process][] |
888+
| `lib/internal/url`, `src/node_url` | [@nodejs/url][] |
889+
| `lib/net` | [@nodejs/streams][] |
890+
| `lib/repl` | [@nodejs/repl][] |
891+
| `lib/{_}stream{*}` | [@nodejs/streams][] |
892+
| `lib/internal/test_runner` | [@nodejs/test\_runner][@nodejs/test_runner] |
893+
| `lib/timers` | [@nodejs/timers][] |
894+
| `lib/zlib` | [@nodejs/zlib][] |
895+
| `src/async_wrap.*` | [@nodejs/async\_hooks][@nodejs/async_hooks] |
896+
| `src/node_api.*` | [@nodejs/node-api][] |
897+
| `src/node_crypto.*`, `src/crypto` | [@nodejs/crypto][] |
898+
| `src/node_sqlite.*` | [@nodejs/sqlite][] |
899+
| `test/*` | [@nodejs/testing][] |
900+
| `tools/eslint`, `eslint.config.mjs` | [@nodejs/linting][] |
901+
| build | [@nodejs/build][] |
902+
| GYP | [@nodejs/gyp][] |
903+
| performance | [@nodejs/performance][] |
904+
| platform specific | @nodejs/platform-{[aix][], [arm][], [freebsd][], [macos][], [ppc][], [smartos][], [s390][], [windows][], [windows-arm][]} |
905+
| python code | [@nodejs/python][] |
906+
| upgrading http-parser | [@nodejs/http][], [@nodejs/http2][] |
907+
| upgrading libuv | [@nodejs/libuv][] |
908+
| upgrading npm | [@nodejs/npm][] |
909+
| upgrading V8 | [@nodejs/V8][], [@nodejs/post-mortem][] |
910+
| Embedded use or delivery of Node.js | [@nodejs/delivery-channels][] |
913911

914912
When things need extra attention, are controversial, or `semver-major`:
915-
@nodejs/tsc
913+
[@nodejs/tsc][]
916914

917915
If you cannot find who to cc for a file, `git shortlog -n -s <file>` can help.
918916

@@ -1000,21 +998,66 @@ need to be attached anymore, as only important bugfixes will be included.
1000998
* No `x86{_64}` label because it is the implied default
1001999

10021000
["Merge pull request"]: https://help.github.com/articles/merging-a-pull-request/#merging-a-pull-request-on-github
1001+
[@nodejs/V8]: https://github.com/orgs/nodejs/teams/V8
1002+
[@nodejs/assert]: https://github.com/orgs/nodejs/teams/assert
1003+
[@nodejs/async_hooks]: https://github.com/orgs/nodejs/teams/async_hooks
1004+
[@nodejs/benchmarking]: https://github.com/orgs/nodejs/teams/benchmarking
1005+
[@nodejs/buffer]: https://github.com/orgs/nodejs/teams/buffer
1006+
[@nodejs/build]: https://github.com/orgs/nodejs/teams/build
1007+
[@nodejs/child_process]: https://github.com/orgs/nodejs/teams/child_process
1008+
[@nodejs/cluster]: https://github.com/orgs/nodejs/teams/cluster
1009+
[@nodejs/crypto]: https://github.com/orgs/nodejs/teams/crypto
1010+
[@nodejs/delivery-channels]: https://github.com/orgs/nodejs/teams/delivery-channels
1011+
[@nodejs/dgram]: https://github.com/orgs/nodejs/teams/dgram
1012+
[@nodejs/diagnostics]: https://github.com/orgs/nodejs/teams/diagnostics
1013+
[@nodejs/documentation]: https://github.com/orgs/nodejs/teams/documentation
1014+
[@nodejs/domains]: https://github.com/orgs/nodejs/teams/domains
1015+
[@nodejs/fs]: https://github.com/orgs/nodejs/teams/fs
1016+
[@nodejs/gyp]: https://github.com/orgs/nodejs/teams/gyp
1017+
[@nodejs/http]: https://github.com/orgs/nodejs/teams/http
1018+
[@nodejs/http2]: https://github.com/orgs/nodejs/teams/http2
1019+
[@nodejs/libuv]: https://github.com/orgs/nodejs/teams/libuv
1020+
[@nodejs/linting]: https://github.com/orgs/nodejs/teams/linting
1021+
[@nodejs/node-api]: https://github.com/orgs/nodejs/teams/node-api
1022+
[@nodejs/npm]: https://github.com/orgs/nodejs/teams/npm
1023+
[@nodejs/performance]: https://github.com/orgs/nodejs/teams/performance
1024+
[@nodejs/post-mortem]: https://github.com/orgs/nodejs/teams/post-mortem
1025+
[@nodejs/process]: https://github.com/orgs/nodejs/teams/process
1026+
[@nodejs/python]: https://github.com/orgs/nodejs/teams/python
1027+
[@nodejs/repl]: https://github.com/orgs/nodejs/teams/repl
1028+
[@nodejs/sqlite]: https://github.com/orgs/nodejs/teams/sqlite
1029+
[@nodejs/streams]: https://github.com/orgs/nodejs/teams/streams
1030+
[@nodejs/test_runner]: https://github.com/orgs/nodejs/teams/test_runner
1031+
[@nodejs/testing]: https://github.com/orgs/nodejs/teams/testing
1032+
[@nodejs/timers]: https://github.com/orgs/nodejs/teams/timers
1033+
[@nodejs/tsc]: https://github.com/orgs/nodejs/teams/tsc
1034+
[@nodejs/url]: https://github.com/orgs/nodejs/teams/url
1035+
[@nodejs/v8-inspector]: https://github.com/orgs/nodejs/teams/v8-inspector
1036+
[@nodejs/zlib]: https://github.com/orgs/nodejs/teams/zlib
10031037
[Deprecation]: https://en.wikipedia.org/wiki/Deprecation
10041038
[SECURITY.md]: https://github.com/nodejs/node/blob/HEAD/SECURITY.md
10051039
[Stability Index]: ../api/documentation.md#stability-index
10061040
[TSC]: https://github.com/nodejs/TSC
10071041
[`--pending-deprecation`]: ../api/cli.md#--pending-deprecation
10081042
[`--throw-deprecation`]: ../api/cli.md#--throw-deprecation
10091043
[`@node-core/utils`]: https://github.com/nodejs/node-core-utils
1044+
[aix]: https://github.com/orgs/nodejs/teams/platform-aix
1045+
[arm]: https://github.com/orgs/nodejs/teams/platform-arm
10101046
[backporting guide]: backporting-to-release-lines.md
10111047
[commit message guidelines]: pull-requests.md#commit-message-guidelines
10121048
[commit-example]: https://github.com/nodejs/node/commit/b636ba8186
10131049
[commit-queue.md]: ./commit-queue.md
1050+
[freebsd]: https://github.com/orgs/nodejs/teams/platform-freebsd
10141051
[git-email]: https://help.github.com/articles/setting-your-commit-email-address-in-git/
10151052
[git-node]: https://github.com/nodejs/node-core-utils/blob/HEAD/docs/git-node.md
10161053
[git-node-metadata]: https://github.com/nodejs/node-core-utils/blob/HEAD/docs/git-node.md#git-node-metadata
10171054
[git-username]: https://help.github.com/articles/setting-your-username-in-git/
1055+
[macos]: https://github.com/orgs/nodejs/teams/platform-macos
10181056
[node-core-utils-credentials]: https://github.com/nodejs/node-core-utils#setting-up-credentials
10191057
[node-core-utils-issues]: https://github.com/nodejs/node-core-utils/issues
1058+
[ppc]: https://github.com/orgs/nodejs/teams/platform-ppc
1059+
[s390]: https://github.com/orgs/nodejs/teams/platform-s390
1060+
[smartos]: https://github.com/orgs/nodejs/teams/platform-smartos
10201061
[unreliable tests]: https://github.com/nodejs/node/issues?q=is%3Aopen+is%3Aissue+label%3A%22CI+%2F+flaky+test%22
1062+
[windows]: https://github.com/orgs/nodejs/teams/platform-windows
1063+
[windows-arm]: https://github.com/orgs/nodejs/teams/platform-windows-arm

0 commit comments

Comments
 (0)