forked from microsoft/azure-repos-pr-multi-cherry-pick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
74 lines (74 loc) · 1.66 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
{
"manifestVersion": 1,
"version": "0.0.65",
"id": "pr-multi-cherry-pick",
"name": "PR Multi-Cherry-Pick",
"description": "Cherry-pick a PR's commits into multiple branches at once",
"demands": ["api-version/5.0"],
"scopes": ["vso.code_manage"],
"categories": ["Azure Repos"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"content": {
"details": {
"path": "README.md"
}
},
"icons": {
"default": "img/logo.png"
},
"branding": {
"color": "rgb(166, 31, 52)",
"theme": "dark"
},
"tags": ["Repos", "PR", "Cherry-pick"],
"repository": {
"type": "git",
"uri": "https://github.com/microsoft/azure-repos-pr-multi-cherry-pick"
},
"links": {
"repository": {
"uri": "https://github.com/microsoft/azure-repos-pr-multi-cherry-pick"
},
"issues": {
"uri": "https://github.com/microsoft/azure-repos-pr-multi-cherry-pick/issues"
},
"support": {
"uri": "mailto:[email protected]"
}
},
"files": [
{
"path": "dist",
"addressable": true
},
{
"path": "img",
"addressable": true
}
],
"contributions": [
{
"id": "contextMenu",
"type": "ms.vss-web.action",
"targets": ["ms.vss-code-web.pull-request-action-menu"],
"properties": {
"group": "actions",
"uri": "dist/index.html",
"text": "Multi-cherry-pick...",
"registeredObjectId": "pr-context-menu",
"icon": "img/icon.png"
}
},
{
"id": "cherryPicksDialog",
"type": "ms.vss-web.external-content",
"properties": {
"uri": "dist/dialog.html"
}
}
]
}