diff --git a/.github/workflows/update_tags.yml b/.github/workflows/update_tags.yml new file mode 100644 index 0000000..a147aff --- /dev/null +++ b/.github/workflows/update_tags.yml @@ -0,0 +1,15 @@ +name: Update tag versions +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: + major_version_tag_only: true # (optional, default is "false")