ci(benchmark): Prevent benchmarks from running concurrently (#10924)

This commit is contained in:
Tomi Turtiainen 2024-09-23 11:52:27 +03:00 committed by GitHub
parent 9141d15823
commit 521bbfeee5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -2,13 +2,17 @@ name: Destroy Benchmark Env
on:
schedule:
- cron: '0 4 * * *'
- cron: '0 5 * * *'
workflow_dispatch:
permissions:
id-token: write
contents: read
concurrency:
group: benchmark
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest

View file

@ -31,6 +31,10 @@ permissions:
id-token: write
contents: read
concurrency:
group: benchmark
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest