Skip to content

Commit

Permalink
Stop workflow cancellation when new commits are detected for Go and J…
Browse files Browse the repository at this point in the history
…ava CI workflows (#991)

Remove cancellation when new commits are detected for Go and Java CI workflows
  • Loading branch information
jonathanl-bq authored Feb 19, 2024
1 parent acb81ec commit fbfd6f8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ on:
- go/**
- .github/workflows/go.yml

# Run only the latest job on a branch and cancel previous ones
concurrency:
group: ${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
build-and-test-go-client:
timeout-minutes: 20
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ on:
- "java/**"
- ".github/workflows/java.yml"

# Run only most latest job on a branch and cancel previous ones
concurrency:
group: ${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
build-and-test-java-client:
timeout-minutes: 25
Expand Down

0 comments on commit fbfd6f8

Please sign in to comment.