Skip to content

Commit

Permalink
CI: creating conventional changelog action
Browse files Browse the repository at this point in the history
  • Loading branch information
niesmaczne committed Aug 30, 2022
1 parent 0139290 commit 9f2fa1f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ConventionalChangelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# name: Create Conventional Changelog
# on: [pull_request]

# jobs:
# commitlint:
# runs-on: ubuntu-latest
# steps:
# - name: Conventional Changelog Action
# uses: TriPSs/conventional-changelog-action@v3
# with:
# github-token: ${{ secrets.github_token }}
# git-message: 'chore(release): {version}'
# git-branch: (${{ github.ref }})
# preset: 'angular'
# tag-prefix: 'v'
# output-file: 'MY_CUSTOM_CHANGELOG.md'
# release-count: '10'
# version-file: './my_custom_version_file.json' // or .yml, .yaml, .toml
# version-path: 'path.to.version'
# skip-on-empty: 'false'
# skip-version-file: 'false'
# skip-commit: 'false'
# git-branch: 'my-maintenance-branch'

0 comments on commit 9f2fa1f

Please sign in to comment.