Files
action-depup/.github/workflows/update_semver.yml
2020-01-19 04:16:18 +00:00

16 lines
303 B
YAML

name: Update Semver
on:
push:
branches-ignore:
- '**'
tags:
- 'v*.*.*'
jobs:
update-semver:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haya14busa/action-update-semver@v1
with:
github_token: ${{ secrets.github_token }}