-
Notifications
You must be signed in to change notification settings - Fork 21
/
github.json
47 lines (47 loc) · 1.51 KB
/
github.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
{
"version": "0.1.0",
"uid": "9c14438b-90fa-41fc-83bb-4a3d9b8cbba6",
"id": "github",
"componentVersions": [0, 1],
"title": "GitHub",
"description": "Do anything available on GitHub.",
"vendor": "GitHub",
"icon": "assets/github.svg",
"setupSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"instillEditOnNodeFields": [
"token"
],
"instillShortDescription": "",
"properties": {
"token": {
"description": "Fill in your GitHub access token for advanced usages. For more information about how to create tokens, please refer to the <a href=\"https://github.com/settings/tokens\">github settings</a>.",
"instillAcceptFormats": [
"string"
],
"instillSecret": true,
"instillShortDescription": "Fill in your GitHub access token for advanced usages. For more information about how to create tokens, please refer to the <a href=\"https://github.com/settings/tokens\">github settings</a>.",
"instillUIOrder": 0,
"instillUpstreamTypes": [
"reference"
],
"title": "Token",
"type": "string"
}
},
"required": [
"token"
],
"title": "GitHub Connection",
"type": "object"
},
"oAuthConfig": {
"authUrl": "https://github.com/login/oauth/authorize",
"accessUrl": "https://github.com/login/oauth/access_token",
"scopes": [
"repo",
"admin:repo_hook"
]
}
}