Skip to content

Commit fdb87d9

Browse files
authored
Added "ids_to_exclude" input to pre-production tests workflow (#259)
1 parent 8863706 commit fdb87d9

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/pre_production_tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ on:
2727
description: "Max concurrent requests (lower for GPT-backed functions)"
2828
required: false
2929
default: '5'
30+
ids_to_exclude:
31+
type: string
32+
description: "Comma-separated submission UUIDs to add to the exclusion list before testing."
33+
required: false
34+
default: ''
3035

3136
jobs:
3237
run-pre-production-tests:
@@ -38,6 +43,7 @@ jobs:
3843
seed: ${{ inputs.seed }}
3944
request_delay: ${{ inputs.request_delay }}
4045
max_concurrency: ${{ inputs.max_concurrency }}
46+
ids_to_exclude: ${{ inputs.ids_to_exclude }}
4147
secrets:
4248
TEST_API_ENDPOINT: ${{ secrets.TEST_API_ENDPOINT }}
4349
DB_USER: ${{ secrets.DB_USER }}

0 commit comments

Comments
 (0)