generated from jimador/typescript-node-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtask.json
32 lines (32 loc) · 943 Bytes
/
task.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
{
"$schema": "https://raw.githubusercontent.com/Microsoft/azure-pipelines-task-lib/master/tasks.schema.json",
"id": "7e5c76b8-13bb-4637-8d23-877f702aaebc",
"name": "azure-test-binder",
"friendlyName": "Azure Test Binder",
"description": "Associate your automated tests to work items by adding the work item id to the test name.",
"helpMarkDown": "",
"category": "Utility",
"author": "James Dunnam",
"visibility": ["Build", "Release"],
"version": {
"Major": 0,
"Minor": 3,
"Patch": 2
},
"instanceNameFormat": "Azure Test Binder",
"inputs": [
{
"name": "pat",
"type": "string",
"label": "Personal Access Token (PAT) for updating work items",
"defaultValue": "$(System.AccessToken)",
"required": false,
"helpMarkDown": "This PAT will be used to invoke the work item update REST call."
}
],
"execution": {
"Node10": {
"target": "index.js"
}
}
}