Skip to content

Commit

Permalink
FIX: Remove concurrency groups (#1064)
Browse files Browse the repository at this point in the history
* FIX: Remove concurrency groups

* CI: Add job-specific concurrency groups

Co-authored-by: Dan Lester <dan@ideonate.com>
  • Loading branch information
HarshCasper and danlester authored Feb 15, 2022
1 parent 5bdf138 commit 46d1351
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- '**.md'

concurrency:
group: ${{ github.ref }}
group: docs-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ on:
tags: # Always, regardless of paths above
- '*'

# concurrency:
# group: ${{ github.ref }}
# cancel-in-progress: true
concurrency:
group: image-${{ github.ref }}
cancel-in-progress: true

jobs:
jupyterlab:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kubernetes_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "*.md"

concurrency:
group: ${{ github.ref }}
group: kubernetes-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
ARM_TENANT_ID: ${{ secrets.ARM_TENANT_ID }}

concurrency:
group: ${{ github.ref }}
group: provider-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "*.md"

concurrency:
group: ${{ github.ref }}
group: test-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 46d1351

Please sign in to comment.