Skip to content

Improve the github actions #5

Improve the github actions

Improve the github actions #5

Workflow file for this run

name: Semantic Versioning Label
on:
push:
branches:
- v2/master
jobs:
semver_tag_from_pr:
permissions:
contents: write
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "0" # we need full git-history to determine the last semVer tag
- name: bump semVer
uses: simontheleg/semver-tag-from-pr-action@v1.4.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}