This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vss-extension.dev.json
122 lines (122 loc) · 3.32 KB
/
vss-extension.dev.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
120
121
122
{
"$schema": "http://json.schemastore.org/vss-extension",
"manifestVersion": 1,
"id": "pull-request-utils-dev",
"name": "Pull Request Utils - DEV",
"public": false,
"version": "1.1.0",
"publisher": "JoachimDalen",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "A task to manage pull requests. Includes posting comments on pull requests, checking if tags are assigned, assigning tags, updating the description",
"categories": ["Azure Pipelines"],
"tags": [
"pull request",
"pipeline",
"build",
"gates",
"comments",
"statuses",
"tags",
"description"
],
"content": {
"details": { "path": "marketplace/docs/README.md" },
"changelog": { "path": "marketplace/docs/CHANGELOG.md" }
},
"branding": {
"color": "#DB6900",
"theme": "dark"
},
"repository": {
"type": "git",
"uri": "https://github.com/joachimdalen/azdevops-pull-request-utils"
},
"links": {
"getstarted": {
"uri": "https://devops-extensions.dev/docs/extensions/pull-request-utils"
},
"repository": {
"uri": "https://github.com/joachimdalen/azdevops-pull-request-utils"
},
"support": {
"uri": "https://github.com/joachimdalen/azdevops-pull-request-utils/issues"
},
"privacypolicy": {
"uri": "https://devops-extensions.dev/docs/privacy"
},
"license": {
"uri": "https://github.com/joachimdalen/azdevops-pull-request-utils/blob/master/LICENSE"
}
},
"files": [
{
"path": "tasks/pull-request-comments/dist/bundle",
"packagePath": "/pull-request-utils/pull-request-comments/"
},
{
"path": "tasks/pull-request-tags/dist/bundle",
"packagePath": "/pull-request-utils/pull-request-tags/"
},
{
"path": "tasks/pull-request-status/dist/bundle",
"packagePath": "/pull-request-utils/pull-request-status/"
},
{
"path": "tasks/pull-request-description/dist/bundle",
"packagePath": "/pull-request-utils/pull-request-description/"
},
{
"path": "marketplace/docs/images",
"addressable": true
}
],
"screenshots": [
{
"path": "marketplace/docs/images/markdown-pr-comment.png"
},
{
"path": "marketplace/docs/images/simple-pr-comment.png"
}
],
"icons": {
"default": "extension-icon.png"
},
"contributions": [
{
"id": "5c6ec8a1-d04c-44c0-99b8-42dd865b42e8",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "pull-request-utils/pull-request-comments"
}
},
{
"id": "b5a17f8e-3729-4f73-9cae-e8c9ee69137d",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "pull-request-utils/pull-request-tags"
}
},
{
"id": "2404c7fc-4ed6-4f21-a993-8858bb82622f",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "pull-request-utils/pull-request-status"
}
},
{
"id": "d95c03b3-f080-4ad7-87e7-5f1820c72155",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "pull-request-utils/pull-request-description"
}
}
]
}