Commit 11cb097b authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

chore: fix ci for test runs (#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
parent 583db1b4
......@@ -4,7 +4,7 @@ on:
pull_request:
concurrency:
group: "tests-${{ github.ref }}"
group: "tests-${{ github.head_ref }}"
cancel-in-progress: true
jobs:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment