We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8428e1e commit 8677932Copy full SHA for 8677932
.github/workflows/publish-package-to-npmjs.yml
@@ -72,10 +72,20 @@ jobs:
72
needs: [incrementVersionNumber, build]
73
runs-on: ubuntu-latest
74
steps:
75
+ - name: Build Changelog
76
+ id: github_release_changelog
77
+ uses: mikepenz/release-changelog-builder-action@v4
78
+ with:
79
+ toTag: v${{ needs.incrementVersionNumber.outputs.new_version }}
80
+ configurationJson: |
81
+ {
82
+ "pr_template": " - #{{TITLE}} - ( PR: ##{{NUMBER}} )"
83
+ }
84
- name: Create Release Notes
85
uses: softprops/action-gh-release@v2
86
with:
87
name: v${{ needs.incrementVersionNumber.outputs.new_version }}
88
+ body: ${{ steps.github_release_changelog.outputs.changelog }}
89
draft: true
90
publish-package:
91
if: inputs.publish_to_npm
0 commit comments