Skip to content

Commit

Permalink
Merge pull request #1873: Prevent concurrent workflow runs on the sam…
Browse files Browse the repository at this point in the history
…e PR
  • Loading branch information
victorlin authored Oct 21, 2024
2 parents 40beaf0 + 7f05dc1 commit f6a56ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/preview_on_downstream_repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ on:
required: true
type: boolean

# Cancel any in-progress runs of a caller workflow on the same branch.
# Cancel any in-progress runs of a caller workflow on the same pull request.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true

env:
Expand Down

0 comments on commit f6a56ca

Please sign in to comment.