From 954f1b08dad6edd51573bbd19b3238e24b868f38 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Mon, 25 Nov 2024 09:18:32 +0000 Subject: [PATCH] Allow concurrent paketo builds With concurrency groups enabled, GitHub will start cancelling jobs if more than one is pending. We run paketo build as part of PR checks, so if multiple PRs are opened around the same time (3+), then when the latest PR is opened, it will cancel the Paketo build job of a previous PR that is currently "pending". This leads to a "cancelled check" report on the PR, which is a red cross and looks bad. We should be able to build as many images as are needed for the PRs we have up. --- .github/workflows/copilot_deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/copilot_deploy.yml b/.github/workflows/copilot_deploy.yml index 342b67b0..f1e1c57c 100644 --- a/.github/workflows/copilot_deploy.yml +++ b/.github/workflows/copilot_deploy.yml @@ -44,7 +44,6 @@ jobs: paketo_build: needs: [ setup ] - concurrency: build-assessment-store-pack permissions: packages: write uses: communitiesuk/funding-service-design-workflows/.github/workflows/package.yml@main