Files
scribe/.github/workflows/semver.yml
T
2024-05-21 07:59:40 +00:00

21 lines
395 B
YAML

name: Semantic Versioning
on: push
# pull_request:
# types: [closed]
jobs:
build:
runs-on: ubuntu-latest
if: github.event.pull_request.merged
steps:
- name: Tag
uses: K-Phoen/semver-release-action@master
with:
release_branch: pyproject.toml
release_strategy: none
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}