mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix(ci): only cancel previous in-progress workflow of the same group
This commit is contained in:
parent
7107ded3cd
commit
b68e76bbac
8
.github/workflows/binary_test.yml
vendored
8
.github/workflows/binary_test.yml
vendored
|
@ -5,10 +5,6 @@ on:
|
|||
pull_request:
|
||||
workflow_dispatch: []
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.head_ref }}/binary_test
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
@ -36,6 +32,10 @@ jobs:
|
|||
- goarch: s390x
|
||||
goos: windows
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.head_ref }}/binary_test/${{ matrix.goos }}/${{ matrix.goarch }}
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
|
|
Loading…
Reference in a new issue