This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm/concurrency in repository https://gitbox.apache.org/repos/asf/beam.git
commit 929132f6386614c823504d58441738eb93b00f8c Author: Danny McCormick <[email protected]> AuthorDate: Mon Oct 16 15:45:49 2023 -0400 Fix concurrency groups in Readme --- .github/workflows/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 8fba73ed8fc..daf873a1109 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -119,7 +119,7 @@ Concurrency groups are a way of making sure that no more than one Actions run is ``` concurrency: - group: '${{ github.workflow }} @ ${{ github.event.issue.number || github.event.pull_request.head.label || github.sha || github.head_ref || github.ref }}-${{ github.event.schedule || github.event.comment.id || github.event.sender.login}}' + group: '${{ github.workflow }} @ ${{ github.event.issue.number || github.sha || github.head_ref || github.ref }}-${{ github.event.schedule || github.event.comment.id || github.event.sender.login }}' cancel-in-progress: true ```
