From 3a6b0f0d238a5e84a85e0fb2068c3d88fe822236 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Sun, 16 May 2021 15:48:35 +0100 Subject: [PATCH] feat: restrict workflow concurrency per branch Protects the cache from competing workflow runs on a per branch basis. PR: #53 --- .github/workflows/containers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index b16a5bd..b2ef986 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -17,8 +17,8 @@ on: pull_request: workflow_dispatch: -concurrency: ${{ github.workflow }} - +concurrency: ${{ github.ref }}/${{ github.workflow }} + jobs: architectures: runs-on: ubuntu-latest