ci: use github.sha instead of github.ref, so CI runs on master are not canceled early
parent
de3665af69
commit
5ee5f92cda
|
@ -9,7 +9,7 @@ on:
|
|||
- "**.md"
|
||||
|
||||
concurrency:
|
||||
group: build-${{ github.event.pull_request.number || github.ref }}
|
||||
group: build-${{ github.event.pull_request.number || github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
|
@ -54,7 +54,7 @@ on:
|
|||
- 'vlib/v/embed_file/**.v'
|
||||
|
||||
concurrency:
|
||||
group: build-${{ github.event.pull_request.number || github.ref }}
|
||||
group: build-${{ github.event.pull_request.number || github.sha }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
Loading…
Reference in New Issue