Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Simplify concurrency configuration: cancel-in-progress can stay true
Co-authored-by: kuznetsss <[email protected]>
  • Loading branch information
Copilot and kuznetsss committed Aug 5, 2025
commit 27929d19e961129b253d5c704b298f796b0a8b09
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ on:
workflow_dispatch:

concurrency:
# Develop branch: Each run gets unique group (using run_number) for parallel execution without cancellation
# Develop branch: Each run gets unique group (using run_number) for parallel execution
# Other branches: Shared group with cancel-in-progress to stop old runs when new commits are pushed
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/develop' && github.run_number || 'branch' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }}
cancel-in-progress: true

jobs:
build-and-test:
Expand Down