This is an automated email from the ASF dual-hosted git repository.
damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 1b50ebbe157 Fix concurrency groups in Readme (#29021)
1b50ebbe157 is described below
commit 1b50ebbe157d205f015a908ef8a597a7cbbf4a6c
Author: Danny McCormick <[email protected]>
AuthorDate: Mon Oct 16 16:17:34 2023 -0400
Fix concurrency groups in Readme (#29021)
---
.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
```