ci: ensure unique group ID to prevent workflows from getting cancelled (#31806)

ci: ensure unique group ID to prevent workflows from cancelling
This commit is contained in:
Sagar Vora
2022-08-09 11:49:48 +00:00
committed by GitHub
parent e93a1cc02e
commit a2252c9236
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ on:
workflow_dispatch:
concurrency:
group: patch-develop-${{ github.event.number }}
group: patch-develop-${{ github.event_name }}-${{ github.event.number || github.event_name == 'workflow_dispatch' && github.run_id || '' }}
cancel-in-progress: true
jobs: