From 78b632e41f8a9d212bdbeae681f99af225da2901 Mon Sep 17 00:00:00 2001 From: neilcar Date: Wed, 2 Dec 2020 18:23:26 -0500 Subject: [PATCH] Create versioning.yml Add semver management action. --- .github/workflows/versioning.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/versioning.yml diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml new file mode 100644 index 0000000..9fef92b --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,15 @@ +name: Update Semver +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