We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25c4fcc commit 15ed54fCopy full SHA for 15ed54f
1 file changed
.github/workflows/rollback-release.yml
@@ -147,6 +147,15 @@ jobs:
147
--title "$VERSION" \
148
--notes-file "$PARTIAL_CHANGELOG"
149
150
+ - name: Update changelog
151
+ shell: bash
152
+ env:
153
+ NEW_CHANGELOG: "${{ runner.temp }}/new_changelog.md"
154
+ NEW_BRANCH: "${{ steps.mergeback-branch.outputs.new-branch }}"
155
+ run: |
156
+ git checkout "${NEW_BRANCH}"
157
+ mv ${NEW_CHANGELOG} CHANGELOG.md
158
+
159
- name: Create mergeback branch and PR
160
uses: ./.github/actions/prepare-mergeback-branch
161
with:
0 commit comments