-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork_package_template.json
More file actions
31 lines (31 loc) · 1.29 KB
/
work_package_template.json
File metadata and controls
31 lines (31 loc) · 1.29 KB
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
{
"central_repository": "mei-friend/automation",
"branch": "main",
"automation_path": "run_automation.sh",
"work_packages": [
{
"id": "template_id",
"label": "Template label",
"description": "A meaningful description of what the work package does goes here. The scripts listed in the 'scripts' field will be executed in order when this work package is run. If 'commitResult' is true, the result of the last script will be committed back to the caller repository.",
"userFacing": true,
"params": {
"firstParam": {
"type": "Number",
"default": 5,
"description": "A meaningful description of what this parameter does goes here. The default value is optional, but if included, it must be of the type specified in the 'type' field."
},
"secondParam": {
"type": "String",
"default": "optional default value",
"description": "A meaningful description of what this parameter does goes here. The default value is optional, but if included, it must be of the type specified in the 'type' field."
}
},
"scripts": [
"script_collection.first_script",
"script_collection.second_script",
"script_collection.third_script"
],
"commitResult": true
}
]
}