File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -124,11 +124,17 @@ jobs:
124
124
token : ${{ secrets.GITHUB_TOKEN }}
125
125
branch : " 1.x"
126
126
127
+ - name : Prepare changelog release notes
128
+ id : changelog-notes
129
+ run : |
130
+ notes="$(echo "${{ steps.notes.outputs.release-notes }}" | sed "s/^## /### /")"
131
+ echo "release-notes=$notes" >> $GITHUB_OUTPUT
132
+
127
133
- name : Update Changelog
128
134
uses : stefanzweifel/changelog-updater-action@v1
129
135
with :
130
- release-notes : ${{ steps.notes.outputs.release-notes }}
131
- latest-version : " v${{ github.event.release.tag_name }}"
136
+ release-notes : ${{ steps.changelog- notes.outputs.release-notes }}
137
+ latest-version : " v${{ steps.bump-version.outputs.version }}"
132
138
compare-url-target-revision : " 1.x"
133
139
parse-github-usernames : true
134
140
You can’t perform that action at this time.
0 commit comments