-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvss-extension.json
62 lines (62 loc) · 1.72 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
{
"manifestVersion": 1,
"id": "ghas-for-ado-decorator",
"name": "GitHub Advanced Security for Azure DevOps Decorator Tools",
"version": "1.0.0",
"publisher": "lupascalin",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Decorator extension to automatically inject GitHub Advanced Security tasks into your Continuous Integration (CI) pipelines.",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "extension-icon.png"
},
"content": {
"details": {
"path": "README.md"
}
},
"files": [
{
"path": "ghas-for-ado-decorator-pre.yml",
"addressable": true,
"contentType": "text/plain"
},
{
"path": "ghas-for-ado-decorator-post.yml",
"addressable": true,
"contentType": "text/plain"
},
{
"path": "images",
"addressable": true
}
],
"contributions": [
{
"id": "ghas-for-ado-decorator-pre-task",
"type": "ms.azure-pipelines.pipeline-decorator",
"targets": [
"ms.azure-pipelines-agent-job.pre-job-tasks"
],
"properties": {
"template": "ghas-for-ado-decorator-pre.yml"
}
},
{
"id": "ghas-for-ado-decorator-post-task",
"type": "ms.azure-pipelines.pipeline-decorator",
"targets": [
"ms.azure-pipelines-agent-job.post-job-tasks"
],
"properties": {
"template": "ghas-for-ado-decorator-post.yml"
}
}
]
}