From ec141401078393f1f68edbcef205b6db1501fe48 Mon Sep 17 00:00:00 2001 From: tooomm Date: Sun, 5 Mar 2023 10:10:28 +0100 Subject: [PATCH] CI: Automatic vX tag update workflow (#185) --- .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..e111590 --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,15 @@ +name: Keep major version tags up-to-date + +on: + release: + types: [published, edited] + +jobs: + actions-tagger: + name: Tag GitHub Action + runs-on: ubuntu-latest + steps: + - uses: Actions-R-Us/actions-tagger@v2 + with: + publish_latest_tag: false + prefer_branch_releases: false