Skip to content

Commit 487f931

Browse files
committed
automatically generate release notes
1 parent e865411 commit 487f931

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

script/workflows/generate-release-notes.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ CHANGELIST=$(gh pr list --repo github/vscode-github-actions --base main --state
2121

2222
# store the release notes in a variable so we can use it later
2323

24-
RELEASE_NOTES="Release $NEW_RELEASE\n"
24+
RELEASE_NOTES="Release $NEW_RELEASE"
2525

2626
UPDATED=$(echo $CHANGELIST | jq -r '.[].title' | while read line; do
2727
echo " - $line \n";
2828
done)
2929
30-
echo $UPDATED
30+
RELEASE_NOTES="$RELEASE_NOTES\n$UPDATED"
31+
echo $RELEASE_NOTES

0 commit comments

Comments
 (0)