-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.json
More file actions
31 lines (31 loc) · 857 Bytes
/
task.json
File metadata and controls
31 lines (31 loc) · 857 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/Microsoft/azure-pipelines-task-lib/master/tasks.schema.json",
"id": "227e16f4-cd80-40c6-bf19-bdb0f487fddb",
"name": "CustomTASK",
"friendlyName": "Assa POC",
"description": "This is a POC to run any routine from a custom task",
"helpMarkDown": "",
"category": "Utility",
"author": "Hugo Guerrero",
"version": {
"Major": 0,
"Minor": 1,
"Patch": 0
},
"instanceNameFormat": "Echo $(samplestring)",
"inputs": [
{
"name": "samplestring",
"type": "string",
"label": "Sample String",
"defaultValue": "",
"required": true,
"helpMarkDown": "A sample string"
}
],
"execution": {
"Node": {
"target": "index.js"
}
}
}