Skip to content

Commit b73f80a

Browse files
committed
test
1 parent cb73bfd commit b73f80a

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

script/workflows/generate-release-notes.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ CHANGELIST=$(gh pr list --repo github/vscode-github-actions --base main --state
2323

2424
echo "Release $NEW_RELEASE" >> release-notes.txt
2525

26-
UPDATED=$(echo $CHANGELIST | jq -r '.[].title' | while read line; do
27-
echo " - $line \n" >> release-notes.txt
28-
done)
26+
echo $CHANGELIST | jq -r '.[].title' | while read line; do
27+
echo " - $line" >> release-notes.txt
28+
done
29+
30+
echo " "

0 commit comments

Comments
 (0)