-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathado-gh-codespaces-extension.json
109 lines (109 loc) · 2.87 KB
/
ado-gh-codespaces-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
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
{
"manifestVersion": 1,
"id": "ADOGitHubCodespaces",
"publisher": "RJEx",
"version": "1.0.431",
"name": "ADO Repos on Github Codespaces",
"description": "Integrate ADO repos with GitHub Codespaces easily using this extension",
"scopes": ["vso.code"],
"categories": ["Azure Pipelines"],
"contributions": [
{
"id": "feature-codespaces",
"type": "ms.vss-web.feature",
"description": "Try the new Codespaces hub",
"targets": [
"ms.vss-web.managed-features",
"ms.vss-web.managed-features-onprem"
],
"properties": {
"name": "Codespaces",
"userConfigurable": true,
"hostConfigurable": true,
"hostScopes": ["project", null],
"defaultState": false
}
},
{
"id": "codespaces-hub",
"type": "ms.vss-web.hub",
"description": "Custom hub in the Code hub group that displays information about the currently active Git repository.",
"targets": ["ms.vss-code-web.code-hub-group"],
"properties": {
"name": "Codespaces",
"order": 100,
"uri": "dist/CodespacesHub/CodespacesHub.html",
"iconName": "PC1"
},
"constraints": [
{
"name": "Feature",
"properties": {
"featureId": "RJEx.ADOGitHubCodespaces.feature-codespaces"
}
}
]
},
{
"id": "codespaces-create-on-branch",
"type": "ms.vss-web.action",
"description": "Create a Codespace on a branch",
"targets": ["ms.vss-code-web.git-branches-tree-menu"],
"properties": {
"text": "Create Codespace on branch",
"iconName": "PC1",
"registeredObjectId": "codespaces-create-on-branch",
"uri": "dist/CodespacesAction/CodespacesAction.html",
"name": "Codespaces"
},
"constraints": [
{
"name": "Feature",
"properties": {
"featureId": "RJEx.ADOGitHubCodespaces.feature-codespaces"
}
}
]
},
{
"id": "codespaces-create-on-pr",
"type": "ms.vss-web.action",
"description": "Create a Codespace on a PR",
"targets": ["ms.vss-code-web.pull-request-action-menu"],
"properties": {
"text": "Create Codespace on PR",
"iconName": "PC1",
"registeredObjectId": "codespaces-create-on-pr",
"uri": "dist/CodespacesAction/CodespacesAction.html",
"name": "Codespaces"
},
"constraints": [
{
"name": "Feature",
"properties": {
"featureId": "RJEx.ADOGitHubCodespaces.feature-codespaces"
}
}
]
}
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "logo.png"
},
"content": {
"details": {
"path": "README.md"
}
},
"files": [
{
"path": "dist",
"addressable": true
}
]
}