This repository was archived by the owner on Sep 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathvss-extension.json
More file actions
119 lines (119 loc) · 3.61 KB
/
vss-extension.json
File metadata and controls
119 lines (119 loc) · 3.61 KB
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
{
"manifestVersion": 1,
"id": "create-pr-comment-task",
"name": "Create Pull Request Comment",
"publisher": "CSE-DevOps",
"version": "0.1.0",
"galleryFlags": [
"Public",
"Preview"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Create Pull Request Comment",
"categories": [
"Azure Pipelines"
],
"tags": [
"Pull Request",
"PR",
"PR Comment",
"Utility task",
"Utility",
"Azure Pipelines"
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE.md"
}
},
"icons": {
"default": "vss-extension-icon.png"
},
"files": [
{
"path": "task"
}
],
"links": {
"home": {
"uri": "https://github.com/microsoft/CSEDevOps/tree/main/CreatePrComment"
},
"getstarted": {
"uri": "https://github.com/microsoft/CSEDevOps/blob/main/CreatePrComment/README.md"
},
"learn": {
"uri": "https://github.com/microsoft/CSEDevOps/blob/main/CreatePrComment/README.md"
},
"support": {
"uri": "https://github.com/microsoft/CSEDevOps/discussions/categories/createprcomment"
},
"repository": {
"uri": "https://github.com/microsoft/CSEDevOps/tree/main/CreatePrComment"
},
"issues": {
"uri": "https://github.com/microsoft/CSEDevOps/issues?q=is:issue+label:CreatePrComment"
},
"license": {
"uri": "https://github.com/microsoft/CSEDevOps/blob/main/CreatePrComment/LICENSE.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/microsoft/CSEDevOps"
},
"contributions": [
{
"id": "service-endpoint",
"description": "Service Endpoint type for Azure DevOps PAT",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "azuredevops",
"displayName": "CreatePRCommentTaskV0 Azure DevOps PAT",
"config": {
"type": "string",
"description": "Put your Personal Access Token of the Azure DevOps",
"required": true
},
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"inputDescriptors": [
{
"id": "pat",
"name": "PAT",
"description": "Azure DevOps Personal Access Token here.",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": "Create a Pull Request Comment."
}
},
{
"id": "custom-build-release-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "task"
}
}
]
}