We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 266d88e commit 89f8527Copy full SHA for 89f8527
1 file changed
.github/workflows/test_evaluation_function.yml
@@ -4,10 +4,6 @@ name: Endpoint Validation Test
4
on:
5
workflow_call:
6
inputs:
7
- endpoint:
8
- description: 'API Endpoint URL to test'
9
- required: true
10
- type: string
11
eval_function:
12
description: 'Evaluation Function Name'
13
required: true
@@ -19,6 +15,10 @@ on:
19
15
default: 1000
20
16
secrets:
21
17
# Explicitly declare the secrets the reusable workflow needs
18
+ TEST_API_ENDPOINT:
+ description: 'API Endpoint URL to test'
+ required: false
+ type: string
22
DB_USER:
23
required: false
24
DB_PASSWORD:
@@ -62,7 +62,6 @@ jobs:
62
63
run: |
64
# 1. Prepare event payload as JSON for the lambda_handler
65
- # Removed recipient_email from payload
66
EVENT_PAYLOAD='{
67
"endpoint": "${{ inputs.endpoint }}",
68
"eval_function_name": "${{ inputs.eval_function }}",
0 commit comments