forked from port-labs/trigger-windmill-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
actionSetup.json
35 lines (35 loc) · 997 Bytes
/
actionSetup.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[
{
"identifier": "trigger_windmill_workflow",
"title": "Trigger Windmill Workflow",
"icon": "DefaultProperty",
"description": "Trigger jobs in your windmill workspace",
"invocationMethod": { "type": "KAFKA" },
"userInputs": {
"properties": {
"workspace": {
"title": "Workspace",
"description": "The Workspace identifier",
"type": "string"
},
"file_path": {
"title": "File Path",
"description": "The path of the job script in the workspace, including the /u and /f prefix",
"type": "string"
},
"job_data": {
"title": "Job Data",
"description": "The data to be passed to the job in order to execute successfully",
"type": "object"
}
},
"required": [
"workspace",
"file_path",
"job_data"
]
},
"trigger": "CREATE",
"requiredApproval": false
}
]