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]
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'

3
.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'

Loading…
Cancel
Save