Skip to content

v3.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Aug 13:26
· 124 commits to master since this release
  • Add args input to the action to define command line arguments passed to changelog-from-release command.
    - uses: rhysd/changelog-from-release/action@v3
      with:
        file: CHANGELOG.md
        github_token: ${{ secrets.GITHUB_TOKEN }}
        # Pass `-l 2` to use `##` instead of `#` for each release section
        args: -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@v3
      with:
        file: CHANGELOG.md
        github_token: ${{ secrets.GITHUB_TOKEN }}
        args: -l 2
        header: |
          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.