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:
parent
92ca6998b3
commit
c5c4fdac29
3
.github/workflows/auto-release.yml
vendored
3
.github/workflows/auto-release.yml
vendored
@ -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"
|
||||
|
Reference in New Issue
Block a user