From 012ae48172b00cfbfad05e1a3fa6d0af04bc0d7b Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 9 Jun 2023 14:31:40 +0100 Subject: [PATCH] Add workflow that updates a vX.Y tag on release --- .github/workflows/update-major-minor-tag.yml | 30 ++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/update-major-minor-tag.yml diff --git a/.github/workflows/update-major-minor-tag.yml b/.github/workflows/update-major-minor-tag.yml new file mode 100644 index 000000000..d25466f06 --- /dev/null +++ b/.github/workflows/update-major-minor-tag.yml @@ -0,0 +1,30 @@ +name: Update the vX.Y tag + +on: + release: + types: [released] + workflow_dispatch: + inputs: + TAG_NAME: + description: 'Tag name that the major.minor tag will point to' + required: true + +env: + TAG_NAME: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} + +jobs: + update_tag: + name: Update the major.minor tag to include the ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} changes + environment: + name: releaseNewActionVersion + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + + - name: Update the ${{ env.TAG_NAME }} tag + id: update-major-minor-tag + uses: joerick/update-vX.Y-tag-action@v1.0 + with: + source-tag: ${{ env.TAG_NAME }}