Skip to content

Commit 11cb097

Browse files
authored
chore: fix ci for test runs (ethereum#601)
previously we were using github.ref which would be main for two different PRs making the concurrency group in valid head_ref should work for on pull request events and that should be the source branch
1 parent 583db1b commit 11cb097

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/per-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55

66
concurrency:
7-
group: "tests-${{ github.ref }}"
7+
group: "tests-${{ github.head_ref }}"
88
cancel-in-progress: true
99

1010
jobs:

0 commit comments

Comments
 (0)