From 7107ded3cd7d1ef7ba56e9a8077843d0542b2098 Mon Sep 17 00:00:00 2001 From: Alexander <4584443+DragonStuff@users.noreply.github.com> Date: Sat, 28 Aug 2021 11:01:09 +0900 Subject: [PATCH] fix(ci): only cancel previous in-progress workflow of the same group --- .github/workflows/{release_test.yml => binary_test.yml} | 2 +- .github/workflows/container_test.yml | 2 +- .github/workflows/go.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{release_test.yml => binary_test.yml} (96%) diff --git a/.github/workflows/release_test.yml b/.github/workflows/binary_test.yml similarity index 96% rename from .github/workflows/release_test.yml rename to .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: