We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fe64b commit b4bd17fCopy full SHA for b4bd17f
1 file changed
.github/workflows/e2e-ios.yml
@@ -8,7 +8,9 @@ on:
8
types: [synchronize, ready_for_review]
9
10
concurrency:
11
- group: ${{ github.workflow }}-${{ github.ref }}
+ # Key off the PR number (works across pull_request and pull_request_review
12
+ # events). Falls back to ref for direct pushes / re-runs.
13
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.review.pull_request.number || github.ref }}
14
cancel-in-progress: true
15
16
jobs:
0 commit comments