-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-devops-extension.json
More file actions
120 lines (120 loc) · 4.55 KB
/
Copy pathazure-devops-extension.json
File metadata and controls
120 lines (120 loc) · 4.55 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
120
{
"version": "0.0.100",
"manifestVersion": 1,
"publisher": "cloudpup",
"description": "Add a Tag to any commit, in any system. Sensible defaults included.",
"homepage": "https://github.com/cloudpups/universal-git-tags",
"categories": [
"Azure Pipelines"
],
"tags": [
"build",
"deploy",
"git",
"version"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"files": [
{
"path": "tasks"
},
{
"path": "docs",
"addressable": true
}
],
"content": {
"details": {
"path": "docs/Overview.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"home": {
"uri": "https://github.com/cloudpups/universal-git-tags"
},
"repository": {
"uri": "https://github.com/cloudpups/universal-git-tags"
},
"issues": {
"uri": "https://github.com/cloudpups/universal-git-tags/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/cloudpups/universal-git-tags"
},
"CustomerQnASupport": {
"enableqna": false,
"url": "https://github.com/cloudpups/universal-git-tags/issues"
},
"contributions": [
{
"id": "93b182f5-17d4-482f-b562-7e9a32209f2e",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/tag"
}
},
{
"id": "1e19fdb6-49a4-4f5e-951f-7f4ca3ae97de",
"description": "Credentials for Universal Git Tagging",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "credentials",
"displayName": "Universal Git Tagging Credentials",
"url": {
"displayName": "Appropriately Formatted Base Url",
"helpText": "Each system (GitHub, BitBucket, etc) has their own special requirements for this. Please check out the Verified Systems document for more details: https://github.com/cloudpups/universal-git-tags/blob/main/docs/VerifiedSystems.md"
},
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "pat",
"name": "Appropriately Formatted Credentials",
"description": "Each system (GitHub, BitBucket, etc) has their own special requirements for this. Please check out the Verified Systems document for more details: https://github.com/cloudpups/universal-git-tags/blob/main/docs/VerifiedSystems.md",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "apitoken",
"name": "Null Token",
"description": "Not needed",
"inputMode": "passwordBox",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "string"
},
"values": {
"inputId": "apitokenInput",
"defaultValue": "",
"isDisabled": true
}
}
]
}
],
"helpMarkDown": "Each system (GitHub, BitBucket, etc) has their own special requirements for this. Please check out the [Supplying Credentials](https://github.com/cloudpups/universal-git-tags/blob/main/docs/VerifiedSystems.md) section of the Overview for more detail."
}
}
]
}