Skip to content

Develop

Develop #3

Workflow file for this run

name: Bump version
on:
pull_request:
types:
- closed
branches:
- main
jobs:
CreateTag:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.TAGGING_PAT }}
WITH_V: true
PRERELEASE: true
DEFAULT_BUMP: patch