Allow running concurrent unit evals (#42578)

Right now only one unit eval GitHub Action can be run at a time. This
permits them to run concurrently.

Release Notes:

- N/A
This commit is contained in:
Richard Feldman
2025-11-12 22:04:38 +00:00
committed by GitHub
parent b0700a4625
commit ede3b1dae6
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -65,5 +65,5 @@ jobs:
rm -rf ./../.cargo
shell: bash -euxo pipefail {0}
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.run_id }}
cancel-in-progress: true