From 5c4ad2b98eaf69a7c026bd2d1b0f06b96763be01 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 6 Oct 2022 08:21:55 +0100 Subject: [PATCH] Fix concurrency groups for github actions --- .github/workflows/cookstyle.yml | 2 +- .github/workflows/test-kitchen.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index 62d14b8af..43494fc14 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -5,7 +5,7 @@ on: - pull_request concurrency: - group: ${{ github.workflow }}-{{ github.head_ref || github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: diff --git a/.github/workflows/test-kitchen.yml b/.github/workflows/test-kitchen.yml index 60da62fb5..4984f3159 100644 --- a/.github/workflows/test-kitchen.yml +++ b/.github/workflows/test-kitchen.yml @@ -5,7 +5,7 @@ on: - pull_request concurrency: - group: ${{ github.workflow }}-{{ github.head_ref || github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: -- 2.39.5