Skip to content

Commit

Permalink
dbeaver/dbeaver-devops#1525 fix concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Oct 16, 2024
1 parent 8c0083a commit 77da741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/java-checkstyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_call:

concurrency:
group: ${{ github.event_name == 'pull_request' && format('pr-{0}-java-checkstyle', github.event.pull_request.number) || (github.event_name == 'push' && github.ref == 'refs/heads/main' && 'main-branch-java-checkstyle') || 'java-checkstyle' }}
group: ${{ github.event_name == 'pull_request' && format('pr-{0}-java-checkstyle', github.event.pull_request.number) || 'java-checkstyle' }}
cancel-in-progress: true
jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mvn-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
required: false

concurrency:
group: ${{ github.event_name == 'pull_request' && format('pr-{0}-mvn-package', github.event.pull_request.number) || (github.event_name == 'push' && github.ref == 'refs/heads/main' && 'main-branch-mvn-package') || 'mvn-package' }}
group: ${{ github.event_name == 'pull_request' && format('pr-{0}-mvn-package', github.event.pull_request.number) || 'mvn-package' }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 77da741

Please sign in to comment.