Skip to content

Commit

Permalink
change the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadair committed Mar 1, 2023
1 parent 0cb14ac commit f074646
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/update-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ jobs:
--output=body.rst
body.md
- uses: docker://pandoc/core:3.0
with:
args: >- # allows you to break string into multiple lines
--standalone
-t markdown_mmd
-r rst
--output=CHANGELOG.md
CHANGELOG.rst
- name:
id: release_notes
run: |
Expand All @@ -40,7 +49,16 @@ jobs:
with:
release-notes: ${{ steps.release_notes.outputs.body }}
latest-version: ${{ github.event.release.name }}
path-to-changelog: CHANGELOG.rst
path-to-changelog: CHANGELOG.md

- uses: docker://pandoc/core:3.0
with:
args: >- # allows you to break string into multiple lines
--standalone
-r markdown_mmd
-t rst
--output=CHANGELOG.rst
CHANGELOG.md
- name: Commit updated CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v4
Expand Down

0 comments on commit f074646

Please sign in to comment.