Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #191 from communitiesuk/BAU_concurrency_between_de…
Browse files Browse the repository at this point in the history
…ploy_and_test

Bau concurrency between deploy and test
  • Loading branch information
robk-dluhc authored Feb 9, 2024
2 parents 2c95576 + 724bc0b commit 9fe9d66
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/copilot_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
post_dev_deploy_tests:
needs: dev_deploy
concurrency:
group: 'fsd-preaward-test-dev'
group: 'fsd-preaward-dev'
cancel-in-progress: false
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
Expand All @@ -118,8 +118,9 @@ jobs:

post_test_deploy_tests:
needs: test_deploy
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'test') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
concurrency:
group: 'fsd-preaward-test-test'
group: 'fsd-preaward-test'
cancel-in-progress: false
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
Expand All @@ -145,8 +146,9 @@ jobs:

post_uat_deploy_tests:
needs: uat_deploy
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'uat') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
concurrency:
group: 'fsd-preaward-test-uat'
group: 'fsd-preaward-uat'
cancel-in-progress: false
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
Expand Down

0 comments on commit 9fe9d66

Please sign in to comment.