We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb73bfd commit b73f80aCopy full SHA for b73f80a
1 file changed
script/workflows/generate-release-notes.sh
@@ -23,6 +23,8 @@ CHANGELIST=$(gh pr list --repo github/vscode-github-actions --base main --state
23
24
echo "Release $NEW_RELEASE" >> release-notes.txt
25
26
-UPDATED=$(echo $CHANGELIST | jq -r '.[].title' | while read line; do
27
- echo " - $line \n" >> release-notes.txt
28
-done)
+echo $CHANGELIST | jq -r '.[].title' | while read line; do
+ echo " - $line" >> release-notes.txt
+done
29
+
30
+echo " "
0 commit comments