From c5c4fdac292b70ae630d5f28f0b00e35d7d15621 Mon Sep 17 00:00:00 2001 From: Gerhard Lazu Date: Tue, 18 Jan 2022 22:02:28 +0000 Subject: [PATCH] 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 --- .github/workflows/auto-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 9bdfb2be..a28af827 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -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"