feat(workflow): add GitHub Actions workflow to automatically update SemVer tags on tag push events

This commit is contained in:
SethCohen
2025-06-16 22:49:57 -04:00
parent 6ac5abea42
commit e768ce1023
+15
View File
@@ -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