build(deps-dev): bump eslint-plugin-jsdoc from 50.3.1 to 50.6.0 (#815) #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump Version and Create Release | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: tag-and-release-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
bump-and-release: | |
if: "!startsWith(github.event.head_commit.message, 'bump:')" | |
runs-on: ubuntu-latest | |
name: "Bump version and create changelog with commitizen" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
submodules: true | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Create bump and changelog | |
id: cz | |
uses: commitizen-tools/commitizen-action@0.22.0 | |
with: | |
commit: true | |
push: true | |
github_token: ${{ secrets.VERSION_BUMP_TAG_TOKEN }} | |
changelog_increment_filename: "release-body.md" | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
body_path: "release-body.md" | |
tag_name: v${{ steps.cz.outputs.version }} |