-
Notifications
You must be signed in to change notification settings - Fork 0
/
component.json
87 lines (87 loc) · 2.31 KB
/
component.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
{
"title": "GitHub Adapter",
"description": "OIH Adapter for GitHub",
"docsUrl": "https://github.com/elasticio/petstore-component-nodejs",
"envVars": {
"CLIENT_ID": {
"required": true,
"description": "Your GitHub OAuth client key"
},
"CLIENT_SECRET": {
"required": true,
"description": "Your GitHub OAuth client secret"
}
},
"credentials": {
"fields": {
"oauth": {
"label": "Authentication",
"viewClass": "OAuthFieldView",
"required": true
}
},
"oauth2": {
"client_id": "{{CLIENT_ID}}",
"client_secret": "{{CLIENT_SECRET}}",
"auth_uri": "https://github.com/login/oauth/authorize",
"token_uri": "https://github.com/login/oauth/access_token",
"scopes": [
"repo",
"user",
"admin:org"
]
}
},
"triggers": {
"GetOrganizationsPolling": {
"title": "GetOrganizationsPolling",
"main": "./lib/triggers/getOrganizations.js",
"type": "polling",
"metadata": {
"out": "./lib/schemas/getOrganizations.out.json"
}
},
"GetIssuesPolling": {
"title": "GetIssuesPolling",
"main": "./lib/triggers/getIssues.js",
"type": "polling",
"metadata": {
"out": "./lib/schemas/getIssues.out.json"
}
},
"GetPullRequestsPolling":{
"title": "GetPullRequestsPolling",
"main": "./lib/triggers/getPullRequests.js",
"type": "polling",
"metadata": {
"out": "./lib/schemas/getOrganizationMembers.out.json"
}
},
"GetOrganizationMembersPolling":{
"title": "GetOrganizationMembersPolling",
"main": "./lib/triggers/getOrganizationMembers.js",
"type": "polling",
"metadata": {
"out": "./lib/schemas/getPullRequests.out.json"
}
}
},
"actions": {
"createIssue": {
"main": "./lib/actions/createIssue.js",
"title": "Create an issue",
"metadata": {
"in": "./lib/schemas/createIssue.in.json",
"out": "./lib/schemas/createIssue.out.json"
}
},
"createPullRequest": {
"main": "./lib/actions/createPullRequest.js",
"title": "Create a pull request",
"metadata": {
"in": "./lib/schemas/createPullRequest.in.json",
"out": "./lib/schemas/createPullRequest.out.json"
}
}
}
}