Skip to content

0.9.4

0.9.4 #6

Workflow file for this run

name: release-tag
on:
pull_request:
types:
- closed
branches:
- master
jobs:
push-tag:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release')
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: '0'
persist-credentials: false
- name: Push tag
uses: anothrNick/github-tag-action@v1
env:
GITHUB_TOKEN: ${{ secrets.PAT_AUTOTAG }}
CUSTOM_TAG: ${{ github.event.pull_request.title }}
WITH_V: false
PRERELEASE: false