Skip to content

Commit 57747b7

Browse files
committed
Tweak concurrency group for CI so tags are not cancelled by pushes
1 parent 270904f commit 57747b7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ name: tests
33
on: [push, pull_request, workflow_dispatch]
44

55
concurrency:
6-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
6+
group: >-
7+
${{ github.workflow }}-
8+
${{ github.ref_type }}-
9+
${{ github.event.pull_request.number || github.sha }}
710
cancel-in-progress: true
811

912
jobs:

0 commit comments

Comments
 (0)