We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4debd57 commit 17bf1afCopy full SHA for 17bf1af
1 file changed
.github/workflows/test-runner.yml
@@ -1,5 +1,7 @@
1
name: "gha: macOS & Windows"
2
3
+# Build on pull requests and pushes to `main`. The PR builds will be
4
+# non-blocking for now, but that is configured elsewhere.
5
on:
6
# Only trigger on actual pushes to these branches.
7
# A PR merge counts as a push to the target branch.
@@ -18,7 +20,7 @@ on:
18
20
default: true
19
21
22
concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
23
+ group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
24
cancel-in-progress: true
25
26
jobs:
0 commit comments