From 33c330acffb3f5c323e92b7dc583401a7589d673 Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Tue, 29 Mar 2022 13:55:22 +0100 Subject: [PATCH] Allow concurrent PR jobs --- .github/workflows/production_pipeline.yml | 3 +-- .github/workflows/staging_pipeline.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/production_pipeline.yml b/.github/workflows/production_pipeline.yml index 80258dff7..09020a74b 100644 --- a/.github/workflows/production_pipeline.yml +++ b/.github/workflows/production_pipeline.yml @@ -5,8 +5,6 @@ on: types: [released] workflow_dispatch: -concurrency: 'production' - env: REPO_URL: communitiesuk/submit-social-housing-lettings-and-sales-data @@ -133,6 +131,7 @@ jobs: deploy: name: Deploy + concurrency: 'production' runs-on: ubuntu-latest environment: 'production' diff --git a/.github/workflows/staging_pipeline.yml b/.github/workflows/staging_pipeline.yml index f4e59cb7d..9ba8eee7f 100644 --- a/.github/workflows/staging_pipeline.yml +++ b/.github/workflows/staging_pipeline.yml @@ -7,8 +7,6 @@ on: pull_request: workflow_dispatch: -concurrency: 'staging' - defaults: run: shell: bash @@ -105,6 +103,7 @@ jobs: deploy: name: Deploy + concurrency: 'staging' runs-on: ubuntu-latest environment: 'staging'