We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8863706 commit fdb87d9Copy full SHA for fdb87d9
1 file changed
.github/workflows/pre_production_tests.yml
@@ -27,6 +27,11 @@ on:
27
description: "Max concurrent requests (lower for GPT-backed functions)"
28
required: false
29
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: ''
35
36
jobs:
37
run-pre-production-tests:
@@ -38,6 +43,7 @@ jobs:
38
43
seed: ${{ inputs.seed }}
39
44
request_delay: ${{ inputs.request_delay }}
40
45
max_concurrency: ${{ inputs.max_concurrency }}
46
+ ids_to_exclude: ${{ inputs.ids_to_exclude }}
41
47
secrets:
42
48
TEST_API_ENDPOINT: ${{ secrets.TEST_API_ENDPOINT }}
49
DB_USER: ${{ secrets.DB_USER }}
0 commit comments