Skip to content

Commit

Permalink
publish-commit-bottles: fix concurrency group
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ZhongRuoyu committed Apr 20, 2023
1 parent 12f1bef commit c87e5b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-commit-bottles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c87e5b0

Please sign in to comment.