From 192529f2d83482136176c3b08ab96793db201d98 Mon Sep 17 00:00:00 2001 From: Marcus Messer Date: Wed, 20 May 2026 20:12:47 +0100 Subject: [PATCH] Added "ids_to_exclude" input to pre-production tests workflow --- .github/workflows/pre_production_tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pre_production_tests.yml b/.github/workflows/pre_production_tests.yml index 2daabd1..4b25387 100644 --- a/.github/workflows/pre_production_tests.yml +++ b/.github/workflows/pre_production_tests.yml @@ -27,6 +27,11 @@ on: description: "Max concurrent requests (lower for GPT-backed functions)" required: false default: '5' + ids_to_exclude: + type: string + description: "Comma-separated submission UUIDs to add to the exclusion list before testing." + required: false + default: '' jobs: run-pre-production-tests: @@ -38,6 +43,7 @@ jobs: seed: ${{ inputs.seed }} request_delay: ${{ inputs.request_delay }} max_concurrency: ${{ inputs.max_concurrency }} + ids_to_exclude: ${{ inputs.ids_to_exclude }} secrets: TEST_API_ENDPOINT: ${{ secrets.TEST_API_ENDPOINT }} DB_USER: ${{ secrets.DB_USER }}