Skip to content

Commit edc9f13

Browse files
committed
fixup: also don't land v12.x
1 parent c40c0d6 commit edc9f13

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/node-labels.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ const subSystemLabelsMap = new Map([
3333
[/^src\/node_report/, ['c++', 'report']],
3434
[/^src\/node_wasi/, ['c++', 'wasi']],
3535
[/^src\/node_worker/, ['c++', 'worker']],
36-
[/^src\/quic\/*/, ['c++', 'quic', 'dont-land-v14.x']],
37-
[/^src\/node_bob*/, ['c++', 'quic', 'dont-land-v14.x']],
36+
[/^src\/quic\/*/, ['c++', 'quic', 'dont-land-v14.x', 'dont-land-v12.x']],
37+
[/^src\/node_bob*/, ['c++', 'quic', 'dont-land-v14.x', 'dont-land-v12.x']],
3838

3939
// don't label python files as c++
4040
[/^src\/.+\.py$/, 'lib / src'],
@@ -80,8 +80,8 @@ const subSystemLabelsMap = new Map([
8080
[/^deps\/uvwasi\//, 'wasi'],
8181
[/^deps\/nghttp2\/nghttp2\.gyp/, ['build', 'http2', 'dont-land-on-v6.x']],
8282
[/^deps\/nghttp2\//, ['http2', 'dont-land-on-v6.x']],
83-
[/^deps\/ngtcp2\//, 'quic', 'dont-land-v14.x'],
84-
[/^deps\/nghttp3\//, 'quic', 'dont-land-v14.x'],
83+
[/^deps\/ngtcp2\//, 'quic', 'dont-land-v14.x', 'dont-land-v12.x'],
84+
[/^deps\/nghttp3\//, 'quic', 'dont-land-v14.x', 'dont-land-v12.x'],
8585
[/^deps\/([^/]+)/, '$1'],
8686

8787
/* JS subsystems */
@@ -98,7 +98,7 @@ const subSystemLabelsMap = new Map([
9898
[/^lib\/worker_threads.js$/, ['worker']],
9999
[/^lib\/internal\/url\.js$/, ['url-whatwg']],
100100
[/^lib\/internal\/modules\/esm/, 'ES Modules'],
101-
[/^lib\/internal\/quic\/*/, ['quic', 'dont-land-v14.x']],
101+
[/^lib\/internal\/quic\/*/, ['quic', 'dont-land-v14.x', 'dont-land-v12.x']],
102102
// All other lib/ files map directly
103103
[/^lib\/_(\w+)_\w+\.js?$/, '$1'], // e.g. _(stream)_wrap
104104
[/^lib(\/internal)?\/(\w+)\.js?$/, '$2'], // other .js files
@@ -139,7 +139,7 @@ const exclusiveLabelsMap = new Map([
139139
// considered a subsystem of sorts
140140
[/^doc\/api\/n-api.md$/, ['doc', 'n-api']],
141141
// quic
142-
[/^doc\/api\/quic.md$/, ['doc', 'quic', 'dont-land-v14.x']],
142+
[/^doc\/api\/quic.md$/, ['doc', 'quic', 'dont-land-v14.x', 'dont-land-v12.x']],
143143
// add worker label to PRs that affect doc/api/worker_threads.md
144144
[/^doc\/api\/worker_threads.md$/, ['doc', 'worker']],
145145
// automatically tag JS subsystem-specific API doc changes

0 commit comments

Comments
 (0)