diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml new file mode 100644 index 0000000..cec0952 --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,16 @@ +name: Keep the major version tag up-to-date + +on: + release: + types: [published, edited] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: false + +jobs: + update-major-tag: + runs-on: ubuntu-latest + + steps: + - uses: Actions-R-Us/actions-tagger@v2