Go to file
Conventional Changelog Action 82e3986e13 chore(release): v1.2.0 2019-10-18 09:59:09 +00:00
.github/workflows ci: Updated main.yml 2019-10-18 11:57:45 +02:00
node_modules chore(release): v1.2.0 2019-10-18 09:59:09 +00:00
src fix: Fixed that fs was undefined 2019-10-18 11:55:53 +02:00
.gitignore chore: First test release 2019-10-18 09:40:38 +02:00
CHANGELOG.md chore(release): v1.2.0 2019-10-18 09:59:09 +00:00
README.md docs: Updated README 2019-10-18 11:51:50 +02:00
action.yml fix: Fixes 2019-10-18 11:46:10 +02:00
package.json chore(release): v1.2.0 2019-10-18 09:59:09 +00:00
yarn.lock fix: Test release 2019-10-18 11:33:55 +02:00

README.md

Conventional Changelog action

This action will bump version, tag commit and generate a changelog with conventional commits.

Inputs

  • Required github-token: Github token.
  • Optional git-message: Commit message that is used when committing the changelog.
  • Optional preset: Preset that is used from conventional commits. Default angular.
  • Optional tag-prefix: Prefix for the git tags. Default v.
  • Optional output-file: File to output the changelog to. Default CHANGELOG.md.

Example usage

- name: Conventional Changelog Action
  uses: TriPSs/conventional-changelog-action@v0.0.1
  with:
    github-token: ${{ secrets.github_token }}
    git-message: 'chore(release): {version}'
    preset: 'angular'
    tag-prefix: 'v'
    output-file: 'CHANGELOG.md'