You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add args input to the action to define command line arguments passed to changelog-from-release command.
- uses: rhysd/changelog-from-release/action@v3with:
file: CHANGELOG.mdgithub_token: ${{ secrets.GITHUB_TOKEN }}# Pass `-l 2` to use `##` instead of `#` for each release sectionargs: -l 2
Add header and footer inputs to the action to insert templates before/after the generated changelog. The following step inserts the header and the footer.
- uses: rhysd/changelog-from-release/action@v3with:
file: CHANGELOG.mdgithub_token: ${{ secrets.GITHUB_TOKEN }}args: -l 2header: | Changelog ========= This is header.footer: |- This is footer.
Report an error when the release is not associated with any Git tags. This can happen when the release is a draft.
Fix release date is broken when the release is a draft. Instead of published date, created date is used in the case.
Add FAQ section to readme document. Currently two topics are described.