Skip to content

Commit 655d944

Browse files
authored
CI: separate Aiter Test concurrency for push and schedule (ROCm#2718)
Split main-branch concurrency by event type so scheduled runs do not block push-triggered validation when a long queued job keeps the nightly workflow open.
1 parent 842a164 commit 655d944

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/aiter-test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ on:
1717
- cron: '0 22 * * *' # 6:00 AM Beijing Time (UTC+8)
1818

1919
concurrency:
20-
group: ${{ github.workflow }}-${{ github.ref }}
20+
# Keep scheduled main runs from blocking push-triggered validation.
21+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
2122
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
2223

2324
env:

0 commit comments

Comments
 (0)