Skip to content

Merge pull request #9 from k1LoW/fix-vet-out #9

Merge pull request #9 from k1LoW/fix-vet-out

Merge pull request #9 from k1LoW/fix-vet-out #9

Workflow file for this run

name: tagpr
on:
push:
branches:
- main
jobs:
tagpr:
runs-on: ubuntu-latest
outputs:
tagpr-tag: ${{ steps.run-tagpr.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Check out source code
uses: actions/checkout@v4
- id: run-tagpr
name: Run tagpr
uses: Songmu/tagpr@v1
- uses: haya14busa/action-update-semver@v1
if: steps.run-tagpr.outputs.tag != ''
with:
major_version_tag_only: true
tag: ${{ steps.run-tagpr.outputs.tag }}