File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 7171 ./script/workflows/generate-release-notes.sh $LAST_PR ${{ env.new_version }}
7272 gh pr create \
7373 --title "Release version ${{ env.new_version }}" \
74- --body-file release-notes.txt \
74+ --body-file releasenotes.md \
7575 --base main \
7676 --head release/${{ env.new_version }}
7777 env :
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ 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- echo " Release $NEW_RELEASE " >> release-notes.txt
24+ echo " Release $NEW_RELEASE " >> releasenotes.md
2525
2626echo $CHANGELIST | jq -r ' .[].title' | while read line; do
27- echo " - $line " >> release-notes.txt
27+ echo " - $line " >> release-notes.md
2828done
2929
3030echo " "
You can’t perform that action at this time.
0 commit comments