Browse Source

fix(ci): only cancel previous in-progress workflow of the same group

pull/2288/head
Alexander 3 years ago
parent
commit
7107ded3cd
  1. 2
      .github/workflows/binary_test.yml
  2. 2
      .github/workflows/container_test.yml
  3. 2
      .github/workflows/go.yml

2
.github/workflows/release_test.yml → .github/workflows/binary_test.yml

@ -6,7 +6,7 @@ on:
workflow_dispatch: []
concurrency:
group: ${{ github.head_ref }}
group: ${{ github.head_ref }}/binary_test
cancel-in-progress: true
jobs:

2
.github/workflows/container_test.yml

@ -6,7 +6,7 @@ on:
workflow_dispatch: []
concurrency:
group: ${{ github.head_ref }}
group: ${{ github.head_ref }}/container_test
cancel-in-progress: true
jobs:

2
.github/workflows/go.yml

@ -7,7 +7,7 @@ on:
branches: [ master ]
concurrency:
group: ${{ github.head_ref }}
group: ${{ github.head_ref }}/go
cancel-in-progress: true
jobs:

Loading…
Cancel
Save