Fix running-workflow-name in bump_version-tag-release job

This will prevent the job waiting on itself to complete (which will not
happen until GitHub Actions kills the run).

Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
This commit is contained in:
Gerhard Lazu 2022-01-18 22:02:28 +00:00
parent 92ca6998b3
commit c5c4fdac29
No known key found for this signature in database
GPG Key ID: A28DE70C9444D7A6

View File

@ -28,6 +28,7 @@ on:
jobs:
bump_version-tag-release:
# ⚠️ If this changes, remember to update the running-workflow-name property
name: "Bump version, tag & release"
runs-on: ubuntu-latest
steps:
@ -43,7 +44,7 @@ jobs:
ref: ${{ github.ref }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10 # polls the GitHub API every 10 every seconds
running-workflow-name: "Bump version, tag & push"
running-workflow-name: "Bump version, tag & release"
allowed-conclusions: success
- name: "Tag so that a new release can be produced"