aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 11:01:09 +0900
committerAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 11:01:09 +0900
commit7107ded3cd7d1ef7ba56e9a8077843d0542b2098 (patch)
tree030ce0bb32bccfb79de10a2f99f33204e74807e4
parente73044f1f02c88c5bd43e7fb846399b232a8a4ad (diff)
downloadseaweedfs-7107ded3cd7d1ef7ba56e9a8077843d0542b2098.tar.xz
seaweedfs-7107ded3cd7d1ef7ba56e9a8077843d0542b2098.zip
fix(ci): only cancel previous in-progress workflow of the same group
-rw-r--r--.github/workflows/binary_test.yml (renamed from .github/workflows/release_test.yml)2
-rw-r--r--.github/workflows/container_test.yml2
-rw-r--r--.github/workflows/go.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release_test.yml b/.github/workflows/binary_test.yml
index 9049d18ba..467332359 100644
--- a/.github/workflows/release_test.yml
+++ b/.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:
diff --git a/.github/workflows/container_test.yml b/.github/workflows/container_test.yml
index 8c83e5c94..122248b14 100644
--- a/.github/workflows/container_test.yml
+++ b/.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:
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 88c0295ab..d6f7bf1b9 100644
--- a/.github/workflows/go.yml
+++ b/.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: