From d67ab1cb00002af55ff58404e8edb48990e65efb Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 15 May 2024 15:20:32 -0400 Subject: [PATCH] fix: dont start multiple builders (#6437) Something happened here recently. Have to look into why multiple builders might be starting, but most likely this was just hit at the same time --- .github/workflows/setup-runner.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/setup-runner.yml b/.github/workflows/setup-runner.yml index 5b773aea85d..de6a0d6e893 100644 --- a/.github/workflows/setup-runner.yml +++ b/.github/workflows/setup-runner.yml @@ -28,6 +28,8 @@ on: DOCKERHUB_PASSWORD: required: true +concurrency: + group: ci-${{ inputs.username }}-${{ inputs.runner_type }}-${{ inputs.runner_action }} env: DOCKERHUB_PASSWORD: "${{ secrets.DOCKERHUB_PASSWORD }}" RUN_ID: ${{ github.run_id }} @@ -79,4 +81,4 @@ jobs: uses: ./.github/ensure-builder with: runner_action: ${{ inputs.runner_action }} - runner_type: ${{ inputs.runner_type }} \ No newline at end of file + runner_type: ${{ inputs.runner_type }}