From 775c2b619df82e775156b7ea86b1793494421f85 Mon Sep 17 00:00:00 2001 From: Gokhan Gulbiz Date: Thu, 19 Oct 2023 09:09:48 +0300 Subject: [PATCH] Fix flaky test debugging jobs run concurrently --- .github/workflows/flaky_test_debugging.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flaky_test_debugging.yml b/.github/workflows/flaky_test_debugging.yml index fc7444a3c..3b62fa695 100644 --- a/.github/workflows/flaky_test_debugging.yml +++ b/.github/workflows/flaky_test_debugging.yml @@ -1,7 +1,7 @@ name: Flaky test debugging run-name: Flaky test debugging - ${{ inputs.flaky_test }} (${{ inputs.flaky_test_runs_per_job }}x${{ inputs.flaky_test_parallel_jobs }}) concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ inputs.flaky_test }} cancel-in-progress: true on: workflow_dispatch: