Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AJ-1854 add concurrency groups to GH workflows #1373

Merged
merged 12 commits into from
Jun 18, 2024
7 changes: 4 additions & 3 deletions .github/workflows/es-int-tests.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: Elasticsearch Integration Tests

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

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

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

concurrency:
group: ${{ github.workflow }}-${{ github.head_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: 4 additions & 3 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Scala CI

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

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

jobs:
build:

Expand Down
Loading