From 9e29371fcc1d11b58a3ae9b0cb004a4d09e3a49f Mon Sep 17 00:00:00 2001 From: Josh Johanning Date: Tue, 28 Nov 2023 21:00:06 -0500 Subject: [PATCH] chore: adding workflow to rev major version --- .github/workflows/update-major-version-tag.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/update-major-version-tag.yml diff --git a/.github/workflows/update-major-version-tag.yml b/.github/workflows/update-major-version-tag.yml new file mode 100644 index 0000000..60ad25f --- /dev/null +++ b/.github/workflows/update-major-version-tag.yml @@ -0,0 +1,13 @@ +name: Update Major Version Tag + +on: + push: + tags: + - "v*" + +jobs: + update-majorver: + name: Update Major Version Tag + runs-on: ubuntu-latest + steps: + - uses: nowactions/update-majorver@v1