From b68e6036d03248c237cb237c4f98f2c0622a672c Mon Sep 17 00:00:00 2001 From: Conchylicultor Date: Wed, 1 Jun 2022 11:10:51 +0200 Subject: [PATCH] Auto-update major tag --- .github/workflows/update_tags.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/update_tags.yml diff --git a/.github/workflows/update_tags.yml b/.github/workflows/update_tags.yml new file mode 100644 index 0000000..a147aff --- /dev/null +++ b/.github/workflows/update_tags.yml @@ -0,0 +1,15 @@ +name: Update tag versions +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 # (optional, default is "false")