We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 066e266 commit f592582Copy full SHA for f592582
.github/workflows/sycl-ur-perf-benchmarking.yml
@@ -78,6 +78,17 @@ on:
78
- 'level_zero:gpu'
79
- 'level_zero_v2:gpu'
80
81
+concurrency:
82
+ # Cancel a currently running workflow for:
83
+ # - the same PR
84
+ # - manual dispatch if pr_no or commit_hash is repeated, and the runner & backend are the same
85
+ # - scheduled runs if they overlap in time
86
+ group: >-
87
+ ${{ github.workflow }}-${{ github.event_name }}-
88
+ ${{ github.event.pull_request.number || inputs.pr_no || inputs.commit_hash || github.ref }}-
89
+ ${{ inputs.runner }}-${{ inputs.backend }}
90
+ cancel-in-progress: true
91
+
92
permissions: read-all
93
94
jobs:
0 commit comments