This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
vss-extension.json
65 lines (65 loc) · 1.54 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
{
"manifestVersion": 1,
"version": "1.0.7",
"name": "PR Templates",
"scopes": ["vso.code_write"],
"description": "Quickly apply templates to your pull request descriptions",
"publisher": "cschleiden",
"id": "prtemplates",
"icons": {
"default": "marketplace/logo.png"
},
"targets": [{ "id": "Microsoft.VisualStudio.Services" }],
"demands": ["api-version/3.0"],
"galleryFlags": ["Preview"],
"tags": ["Pull Requests", "Templates"],
"content": {
"details": {
"path": "marketplace/details.md"
}
},
"repository": {
"type": "git",
"url": "https://github.com/cschleiden/vsts-pr-templates"
},
"links": {
"support": {
"url": "mailto:[email protected]"
}
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"categories": ["Code"],
"contributions": [
{
"id": "context-menu",
"type": "ms.vss-web.action",
"targets": ["ms.vss-code-web.pull-request-action-menu"],
"properties": {
"group": "contributed",
"uri": "src/index.html",
"text": "Templates",
"registeredObjectId": ""
}
},
{
"id": "apply-templates",
"type": "ms.vss-web.control",
"properties": {
"uri": "src/apply.html"
}
},
{
"id": "manage-templates-hub",
"type": "ms.vss-web.hub",
"targets": ["ms.vss-web.project-admin-hub-group"],
"properties": {
"name": "Pull Request Templates",
"order": 100,
"uri": "src/manage.html"
}
}
]
}