Browse Source

Allow concurrent PR jobs

pull/437/head
baarkerlounger 3 years ago
parent
commit
33c330acff
  1. 3
      .github/workflows/production_pipeline.yml
  2. 3
      .github/workflows/staging_pipeline.yml

3
.github/workflows/production_pipeline.yml

@ -5,8 +5,6 @@ on:
types: [released] types: [released]
workflow_dispatch: workflow_dispatch:
concurrency: 'production'
env: env:
REPO_URL: communitiesuk/submit-social-housing-lettings-and-sales-data REPO_URL: communitiesuk/submit-social-housing-lettings-and-sales-data
@ -133,6 +131,7 @@ jobs:
deploy: deploy:
name: Deploy name: Deploy
concurrency: 'production'
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: 'production' environment: 'production'

3
.github/workflows/staging_pipeline.yml

@ -7,8 +7,6 @@ on:
pull_request: pull_request:
workflow_dispatch: workflow_dispatch:
concurrency: 'staging'
defaults: defaults:
run: run:
shell: bash shell: bash
@ -105,6 +103,7 @@ jobs:
deploy: deploy:
name: Deploy name: Deploy
concurrency: 'staging'
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: 'staging' environment: 'staging'

Loading…
Cancel
Save