From e768ce10237a6100cccd7e80b2e994e9a2609150 Mon Sep 17 00:00:00 2001 From: SethCohen Date: Mon, 16 Jun 2025 22:49:57 -0400 Subject: [PATCH] feat(workflow): add GitHub Actions workflow to automatically update SemVer tags on tag push events --- .github/workflows/update-semver-tags.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/update-semver-tags.yml 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