Skip to content

Commit

Permalink
removing concurrency (#1965)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmund-dunn authored Mar 15, 2024
1 parent 24c14f8 commit a4009ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ env:
INSTANCE_TYPE: m5.4xlarge

concurrency:
group: ${{ github.ref != 'refs/heads/main' && github.ref || github.sha }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
# If this is no a prod push it sets the concurrency group to the workflow name. Otherwise, it sets to the branch name.
group: ${{ github.ref != 'refs/heads/main' && github.workflow || github.ref }}
cancel-in-progress: false

jobs:
build:
Expand All @@ -42,13 +43,14 @@ jobs:

strategy:
fail-fast: true
max-parallel: 1
matrix:
buildtype: [vagovdev, vagovstaging, vagovprod]
include:
- buildtype: vagovdev
drupal-address: https://main-medc0xjkxm4jmpzxl3tfbcs7qcddsivh.ci.cms.va.gov
- buildtype: vagovstaging
drupal-address: https://main-bwj6qn18llmdla8pffimuqxckl0nsehj.ci.cms.va.gov
drupal-address: https://main-medc0xjkxm4jmpzxl3tfbcs7qcddsivh.ci.cms.va.gov
- buildtype: vagovprod
drupal-address: https://prod.cms.va.gov

Expand Down

0 comments on commit a4009ea

Please sign in to comment.