We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e865411 commit 487f931Copy full SHA for 487f931
1 file changed
script/workflows/generate-release-notes.sh
@@ -21,10 +21,11 @@ CHANGELIST=$(gh pr list --repo github/vscode-github-actions --base main --state
21
22
# store the release notes in a variable so we can use it later
23
24
-RELEASE_NOTES="Release $NEW_RELEASE\n"
+RELEASE_NOTES="Release $NEW_RELEASE"
25
26
UPDATED=$(echo $CHANGELIST | jq -r '.[].title' | while read line; do
27
echo " - $line \n";
28
done)
29
30
-echo $UPDATED
+RELEASE_NOTES="$RELEASE_NOTES\n$UPDATED"
31
+echo $RELEASE_NOTES
0 commit comments