Skip to content

Commit

Permalink
AJ-1854 add concurrency groups to GH workflows (#1373)
Browse files Browse the repository at this point in the history
  • Loading branch information
calypsomatic authored Jun 18, 2024
1 parent 6dfc7c0 commit af37754
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/es-int-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ name: Elasticsearch Integration Tests

on:
push:
branches: [ develop ]
paths-ignore:
- 'README.md'
pull_request:
branches: [ develop ]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
es-integration-tests:
name: Elasticsearch Integration Tests
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/orch-build-tag-publish-and-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
branches:
- develop
paths-ignore: ['**.md']

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

env:
GCR_REGISTRY: gcr.io/broad-dsp-gcr-public/firecloud-orchestration
# Region-specific Google Docker repository where GOOGLE_PROJECT/REPOSITORY_NAME can be found
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
name: Scala CI

on:
pull_request:
branches: [ develop ]
push:
paths-ignore:
- 'README.md'
pull_request:
branches: [ develop ]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
build:

Expand Down

0 comments on commit af37754

Please sign in to comment.