Skip to content

Commit f7d9b94

Browse files
committed
hopefully?
1 parent b73f80a commit f7d9b94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
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:

script/workflows/generate-release-notes.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

2626
echo $CHANGELIST | jq -r '.[].title' | while read line; do
27-
echo " - $line" >> release-notes.txt
27+
echo " - $line" >> release-notes.md
2828
done
2929

3030
echo " "

0 commit comments

Comments
 (0)