forked from microsoft/AzureDevOps-WSJF-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
83 lines (83 loc) · 2.49 KB
/
vss-extension.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"manifestVersion": 1,
"version": "1.0.8",
"name": "WSJF (Weighted Shortest Job First)",
"scopes": [ "vso.work", "vso.work_write" ],
"description": "Auto calculates WSJF (weighted shortest job first) per work item and stores it in a work item field.",
"publisher": "MS-Agile-SAFe",
"id": "WSJF-extension",
"icons": {
"default": "marketplace/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Work Items", "WSJF", "SAFe", "Agile", "Backlog", "Stack rank"
],
"content": {
"details": {
"path": "marketplace/details.md"
}
},
"links": {
"learn": {
"uri": "https://github.com/Microsoft/vsts-wsjf-extension"
},
"support": {
"uri": "mailto:[email protected]"
}
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"categories": [
"Plan and track"
],
"demands" : [
"api-version/3.0"
],
"contributions": [
{
"id": "wsjf-work-item-form-observer",
"type": "ms.vss-work-web.work-item-notifications",
"description": "Update the 'WSJF' field when other fields on the form change.",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"uri": "src/wsjf.html"
}
},
{
"id": "wsjf-settings-hub",
"type": "ms.vss-web.hub",
"description": "Collection level settings experience for managing fields used to calculate WSJF.",
"targets": [
"ms.vss-web.collection-admin-hub-group"
],
"properties": {
"name": "WSJF",
"uri": "src/wsjfSettings.html"
}
},
{
"id": "wsjf-contextMenu",
"type": "ms.vss-web.action",
"description": "Work item context menu action to update the WSJF field value for the selected work items.",
"targets": [
"ms.vss-work-web.work-item-context-menu"
],
"properties": {
"text": "Recalculate WSJF values",
"title": "Update the WSJF value for the selected work items",
"icon": "img/icon-refresh.png",
"groupId": "SAFe",
"uri": "src/wsjf.html"
}
}
]
}