-
Notifications
You must be signed in to change notification settings - Fork 37
/
azure-devops-extension.json
119 lines (119 loc) · 3.18 KB
/
azure-devops-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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"public": false,
"manifestVersion": 1,
"id": "WSJF-extension",
"publisher": "MS-Agile-SAFe",
"version": "1.2.0",
"name": "WSJF (Weighted Shortest Job First)",
"description": "Auto calculates WSJF (weighted shortest job first) per work item and stores it in a work item field.",
"categories": [ "Azure Boards" ],
"tags": [
"WSJF",
"SAFe"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"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": "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": "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": "images/icon-refresh.png",
"groupId": "SAFe",
"uri": "wsjf.html"
}
}
],
"files": [
{
"path": "css",
"addressable": true
},
{
"path": "marketplace",
"addressable": true
},
{
"path": "images",
"addressable": true
},
{
"path": "dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "wsjf.html",
"addressable": true
},
{
"path": "wsjfSettings.html",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"scopes": [
"vso.work",
"vso.work_write"
],
"icons": {
"default": "images/logo.png"
},
"content": {
"details": {
"path": "marketplace/details.md"
}
},
"links": {
"support": {
"uri": "mailto:[email protected]"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/Microsoft/vsts-wsjf-extension"
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"demands": [
"api-version/3.0"
]
}