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: ...@@ -4,7 +4,7 @@ on:
pull_request: pull_request:
concurrency: concurrency:
group: "tests-${{ github.ref }}" group: "tests-${{ github.head_ref }}"
cancel-in-progress: true cancel-in-progress: true
jobs: 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