File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed
Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -352,6 +352,11 @@ jobs:
352352 fi
353353 fi
354354
355+ # Get release body and generate links
356+ RELEASE_BODY=$(gh api repos/microsoft/vscode/releases/tags/$CURRENT_TAG --template '{{.body}}')
357+ VERSION_NUMBER=$(echo "$CURRENT_TAG" | sed 's/^v//' | sed 's/\./\_/g')
358+ VSCODE_RELEASE_NOTES="https://code.visualstudio.com/updates/v$VERSION_NUMBER"
359+
355360 # Create PR
356361 PR_TITLE="Update VS Code to $CURRENT_TAG"
357362 PR_BODY="Automated update of VS Code submodule to version $CURRENT_TAG
@@ -360,7 +365,23 @@ jobs:
360365 - Updated third-party-src submodule to $CURRENT_TAG
361366 - Rebased patches for all targets
362367 - Updated package-lock.json overrides
363- - Updated OSS attribution"
368+ - Updated OSS attribution
369+
370+ ## Release Notes
371+ [VS Code Release Notes]($VSCODE_RELEASE_NOTES)
372+
373+ ### Code-OSS Release Details
374+ $RELEASE_BODY
375+
376+ ## Review Notes
377+ Please review the release notes above for:
378+ - Breaking changes
379+ - Changes in default behavior
380+ - Newly introduced features that may need to be disabled/modified
381+ - Remote extension host changes
382+
383+ ## Next Steps
384+ After this PR is merged, a release can be created by following the guide in [RELEASE.md](RELEASE.md)."
364385
365386 gh pr create \
366387 --title "$PR_TITLE" \
You can’t perform that action at this time.
0 commit comments