From 059c673d00f547b969f442b57a587f88ea77dcd7 Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 23 Feb 2023 18:50:44 +0000 Subject: [PATCH] ci: add workflow to the group Otherwise it cancels other workflows. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe1c4f8cc..392da23d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: Rust CI # Cancel previously started workflow runs # when the branch is updated. concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true on: