From c6c561c3aa8665b7e6dd2b24cd22cde1e332f338 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 22 May 2026 20:28:17 +0000 Subject: [PATCH] Expose experiment workflow concurrency input --- .github/workflows/experiment.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/experiment.yml b/.github/workflows/experiment.yml index 47367cd..02bc3f7 100644 --- a/.github/workflows/experiment.yml +++ b/.github/workflows/experiment.yml @@ -6,6 +6,11 @@ on: description: Experiment name to run required: true type: string + concurrency: + description: Number of treatments to run in parallel + required: false + default: '1' + type: string concurrency: group: ${{ github.workflow }}-${{ inputs.experiment }} @@ -34,10 +39,12 @@ jobs: - name: Run experiment env: COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }} + CONCURRENCY: ${{ inputs.concurrency }} EXPERIMENT_NAME: ${{ inputs.experiment }} run: | set -o pipefail node packages/agent-eval/dist/cli.js \ + --concurrency "$CONCURRENCY" \ --experiment "$EXPERIMENT_NAME" \ --artifacts artifacts - name: Upload experiment results