From c87e5b0ea5989ed4eca584e64f3959b143ce657f Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Thu, 20 Apr 2023 17:09:53 +0800 Subject: [PATCH] publish-commit-bottles: fix concurrency group According to [^1]: > The expression can only use the `github` context. [^1]: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency --- .github/workflows/publish-commit-bottles.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-commit-bottles.yml b/.github/workflows/publish-commit-bottles.yml index 09c361d28010d..2c13108a25474 100644 --- a/.github/workflows/publish-commit-bottles.yml +++ b/.github/workflows/publish-commit-bottles.yml @@ -3,7 +3,7 @@ name: Publish and commit bottles run-name: "Publish PR #${{ inputs.pull_request }}" concurrency: - group: ${{ github.workflow }}-${{ inputs.pull_request }} + group: ${{ github.workflow }}-${{ github.event.inputs.pull_request }} cancel-in-progress: false on: