diff --git a/.github/workflows/update-semver-tags.yml b/.github/workflows/update-semver-tags.yml new file mode 100644 index 0000000..62bf219 --- /dev/null +++ b/.github/workflows/update-semver-tags.yml @@ -0,0 +1,15 @@ +name: Update SemVer Tags +on: + push: + branches-ignore: + - '**' + tags: + - 'v*.*.*' + +jobs: + update_semver: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Update semver tags + uses: haya14busa/action-update-semver@v1 \ No newline at end of file