Skip to content

Commit 6f3f303

Browse files
committed
Added seed input for reproducible sampling in prod deploy workflow
1 parent 6a0c99f commit 6f3f303

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/production-deploy.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ on:
1717
required: true
1818
type: string
1919
default: 'main'
20+
seed:
21+
description: 'Random seed for reproducible sampling (float in [-1.0, 1.0]). Leave blank to auto-generate.'
22+
required: false
23+
type: string
24+
default: ''
2025
jobs:
2126
deploy:
2227
uses: lambda-feedback/evaluation-function-workflows/.github/workflows/deploy.yml@deploy-request
@@ -28,6 +33,7 @@ jobs:
2833
version-bump: ${{ inputs.version-bump }}
2934
branch: ${{ inputs.branch }}
3035
run-database-tests: true
36+
seed: ${{ inputs.seed }}
3137

3238
secrets:
3339
aws-key-id: ${{ secrets.LAMBDA_CONTAINER_PIPELINE_AWS_ID }}

0 commit comments

Comments
 (0)