Go to file
Tycho Bokdam f467ea7832
fix: Fixes
Removed node_modules here
2019-10-18 11:46:10 +02:00
.github/workflows fix: Fixes 2019-10-18 11:46:10 +02:00
src fix: Fixes 2019-10-18 11:46:10 +02:00
.gitignore chore: First test release 2019-10-18 09:40:38 +02:00
README.md fix: Fixes 2019-10-18 11:46:10 +02:00
action.yml fix: Fixes 2019-10-18 11:46:10 +02:00
package.json fix: Test release 2019-10-18 11:33:55 +02: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

github-token

Required Github token.

git-message

Optional Commit message that is used when committing the changelog.

preset

Optional Preset that is used from conventional commits. Default angular.

tag-prefix

Optional Prefix for the git tags. Default v.

output-file

Optional 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'