@@ -153,7 +153,9 @@ git reset --hard upstream/v1.x-staging
153
153
If the staging branch is not up to date relative to ` main ` , bring the
154
154
appropriate PRs and commits into it.
155
155
156
- Go through PRs with the label ` vN.x ` . e.g. [ PRs with the ` v8.x ` label] ( https://github.com/nodejs/node/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc+label%3Av8.x ) .
156
+ Go through PRs with the label ` vN.x ` . e.g. [ PRs with the
157
+ ` v8.x ` label] ( https://github.com/nodejs/node/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc+label%3Av8.x )
158
+ and ` baking-for-lts ` label if on a preparing a release for an LTS line.
157
159
158
160
For each PR:
159
161
@@ -162,6 +164,8 @@ For each PR:
162
164
* Check that the commit metadata was not changed from the ` main ` commit.
163
165
* If there are merge conflicts, ask the PR author to rebase.
164
166
Simple conflicts can be resolved when landing.
167
+ * If ` baking-for-lts ` is present, check if the PR is ready to be landed.
168
+ If it is, remove the ` baking-for-lts ` label.
165
169
166
170
When landing the PR add the ` Backport-PR-URL: ` line to each commit. Close the
167
171
backport PR with ` Landed in ... ` . Update the label on the original PR from
@@ -185,7 +189,7 @@ duplicate or not.
185
189
For a list of commits that could be landed in a minor release on v1.x:
186
190
187
191
``` bash
188
- N=1 sh -c ' branch-diff v$N.x-staging upstream/main --exclude-label=semver-major,dont-land-on-v$N.x,backport-requested-v$N.x,backport-blocked-v$N.x,backport-open-v$N.x,backported-to-v$N.x --filter-release --format=simple'
192
+ N=1 sh -c ' branch-diff v$N.x-staging upstream/main --exclude-label=semver-major,dont-land-on-v$N.x,backport-requested-v$N.x,backport-blocked-v$N.x,backport-open-v$N.x,backported-to-v$N.x,baking-for-lts --filter-release --format=simple'
189
193
```
190
194
191
195
Previously released commits and version bumps do not need to be
@@ -204,7 +208,7 @@ When you are ready to cherry-pick commits, you can automate with the following
204
208
command.
205
209
206
210
``` bash
207
- N=1 sh -c ' branch-diff v$N.x-staging upstream/main --exclude-label=semver-major,dont-land-on-v$N.x,backport-requested-v$N.x,backport-blocked-v$N.x,backport-open-v$N.x,backported-to-v$N.x --filter-release --format=sha --reverse' | xargs git cherry-pick -S
211
+ N=1 sh -c ' branch-diff v$N.x-staging upstream/main --exclude-label=semver-major,dont-land-on-v$N.x,backport-requested-v$N.x,backport-blocked-v$N.x,backport-open-v$N.x,backported-to-v$N.x,baking-for-lts --filter-release --format=sha --reverse' | xargs git cherry-pick -S
208
212
```
209
213
210
214
<sup >For patch releases, make sure to add the ` semver-minor ` tag
0 commit comments