ci: preserve membrowse push-to-master runs from cancellation

Use unique concurrency group per commit for push events so that
sequential merges to master don't cancel each other's queued runs.
This ensures every master commit gets analyzed for memory tracking.
This commit is contained in:
Michael Rogov Papernov
2026-04-15 11:05:47 +01:00
committed by Michael Rogov Papernov
parent 6ac0f82b85
commit e38c88daf3
+1 -1
View File
@@ -7,7 +7,7 @@ on:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event_name == 'push' && github.sha || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs: