@activepieces/piece-github 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/src/index.d.ts +2 -2
- package/src/index.js +15 -3
- package/src/index.js.map +1 -1
- package/src/lib/actions/create-issue.d.ts +1 -1
- package/src/lib/actions/create-issue.js.map +1 -1
- package/src/lib/common/index.js.map +1 -1
- package/src/lib/trigger/index.d.ts +3 -3
- package/src/lib/trigger/index.js +502 -502
- package/src/lib/trigger/index.js.map +1 -1
- package/src/lib/trigger/new-star.d.ts +17 -1
- package/src/lib/trigger/new-star.js +25 -31
- package/src/lib/trigger/new-star.js.map +1 -1
- package/src/lib/trigger/register-trigger.d.ts +18 -2
- package/src/lib/trigger/register-trigger.js +3 -3
- package/src/lib/trigger/register-trigger.js.map +1 -1
package/src/lib/trigger/index.js
CHANGED
|
@@ -11,530 +11,530 @@ var GithubEventType;
|
|
|
11
11
|
exports.registered = [
|
|
12
12
|
{
|
|
13
13
|
name: GithubEventType.PULL_REQUEST,
|
|
14
|
-
displayName:
|
|
15
|
-
description:
|
|
14
|
+
displayName: 'New Pull Request',
|
|
15
|
+
description: 'Triggers when there is activity on a pull request.',
|
|
16
16
|
sampleData: {
|
|
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
|
-
|
|
17
|
+
action: 'opened',
|
|
18
|
+
number: 2,
|
|
19
|
+
pull_request: {
|
|
20
|
+
url: 'https://api.github.com/repos/activepieces/activepieces/pulls/2',
|
|
21
|
+
id: 1246014943,
|
|
22
|
+
node_id: 'PR_kwDOCfU56M5KRK3f',
|
|
23
|
+
html_url: 'https://github.com/activepieces/activepieces/pull/2',
|
|
24
|
+
diff_url: 'https://github.com/activepieces/activepieces/pull/2.diff',
|
|
25
|
+
patch_url: 'https://github.com/activepieces/activepieces/pull/2.patch',
|
|
26
|
+
issue_url: 'https://api.github.com/repos/activepieces/activepieces/issues/2',
|
|
27
|
+
number: 2,
|
|
28
|
+
state: 'open',
|
|
29
|
+
locked: false,
|
|
30
|
+
title: 'added',
|
|
31
|
+
user: {
|
|
32
|
+
login: 'jesska',
|
|
33
|
+
id: 391061,
|
|
34
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
35
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/393261?v=4',
|
|
36
|
+
gravatar_id: '',
|
|
37
|
+
url: 'https://api.github.com/users/jesska',
|
|
38
|
+
html_url: 'https://github.com/jesska',
|
|
39
|
+
followers_url: 'https://api.github.com/users/jesska/followers',
|
|
40
|
+
following_url: 'https://api.github.com/users/jesska/following{/other_user}',
|
|
41
|
+
gists_url: 'https://api.github.com/users/jesska/gists{/gist_id}',
|
|
42
|
+
starred_url: 'https://api.github.com/users/jesska/starred{/owner}{/repo}',
|
|
43
|
+
subscriptions_url: 'https://api.github.com/users/jesska/subscriptions',
|
|
44
|
+
organizations_url: 'https://api.github.com/users/jesska/orgs',
|
|
45
|
+
repos_url: 'https://api.github.com/users/jesska/repos',
|
|
46
|
+
events_url: 'https://api.github.com/users/jesska/events{/privacy}',
|
|
47
|
+
received_events_url: 'https://api.github.com/users/jesska/received_events',
|
|
48
|
+
type: 'User',
|
|
49
|
+
site_admin: false,
|
|
50
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
|
-
|
|
51
|
+
body: 'test',
|
|
52
|
+
created_at: '2023-02-18T11:36:07Z',
|
|
53
|
+
updated_at: '2023-02-18T11:36:07Z',
|
|
54
|
+
closed_at: null,
|
|
55
|
+
merged_at: null,
|
|
56
|
+
merge_commit_sha: null,
|
|
57
|
+
assignee: null,
|
|
58
|
+
assignees: [],
|
|
59
|
+
requested_reviewers: [],
|
|
60
|
+
requested_teams: [],
|
|
61
|
+
labels: [],
|
|
62
|
+
milestone: null,
|
|
63
|
+
draft: false,
|
|
64
|
+
commits_url: 'https://api.github.com/repos/activepieces/activepieces/pulls/2/commits',
|
|
65
|
+
review_comments_url: 'https://api.github.com/repos/activepieces/activepieces/pulls/2/comments',
|
|
66
|
+
review_comment_url: 'https://api.github.com/repos/activepieces/activepieces/pulls/comments{/number}',
|
|
67
|
+
comments_url: 'https://api.github.com/repos/activepieces/activepieces/issues/2/comments',
|
|
68
|
+
statuses_url: 'https://api.github.com/repos/activepieces/activepieces/statuses/309b7842c3c8a7cd275a4a6da1e89713917bcdc6',
|
|
69
|
+
head: {
|
|
70
|
+
label: 'kanarelo:dd',
|
|
71
|
+
ref: 'dd',
|
|
72
|
+
sha: '309b7842c3c8a7cd275a4a6da1e89713917bcdc6',
|
|
73
|
+
user: [Object],
|
|
74
|
+
repo: [Object],
|
|
75
75
|
},
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
76
|
+
base: {
|
|
77
|
+
label: 'kanarelo:master',
|
|
78
|
+
ref: 'master',
|
|
79
|
+
sha: '3f80b96f5ba885a21b691b653731520a6000654b',
|
|
80
|
+
user: [Object],
|
|
81
|
+
repo: [Object],
|
|
82
82
|
},
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
83
|
+
author_association: 'OWNER',
|
|
84
|
+
auto_merge: null,
|
|
85
|
+
active_lock_reason: null,
|
|
86
|
+
merged: false,
|
|
87
|
+
mergeable: null,
|
|
88
|
+
rebaseable: null,
|
|
89
|
+
mergeable_state: 'unknown',
|
|
90
|
+
merged_by: null,
|
|
91
|
+
comments: 0,
|
|
92
|
+
review_comments: 0,
|
|
93
|
+
maintainer_can_modify: false,
|
|
94
|
+
commits: 1,
|
|
95
|
+
additions: 1,
|
|
96
|
+
deletions: 0,
|
|
97
|
+
changed_files: 1,
|
|
98
98
|
},
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
99
|
+
repository: {
|
|
100
|
+
id: 167066088,
|
|
101
|
+
node_id: 'MDEwOlJlcG9zaXRvcnkxNjcwNjYwODg=',
|
|
102
|
+
name: 'activepieces',
|
|
103
|
+
full_name: 'activepieces/activepieces',
|
|
104
|
+
private: false,
|
|
105
|
+
owner: {
|
|
106
|
+
login: 'jesska',
|
|
107
|
+
id: 393261,
|
|
108
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
109
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/393261?v=4',
|
|
110
|
+
gravatar_id: '',
|
|
111
|
+
url: 'https://api.github.com/users/jesska',
|
|
112
|
+
html_url: 'https://github.com/jesska',
|
|
113
|
+
followers_url: 'https://api.github.com/users/jesska/followers',
|
|
114
|
+
following_url: 'https://api.github.com/users/jesska/following{/other_user}',
|
|
115
|
+
gists_url: 'https://api.github.com/users/jesska/gists{/gist_id}',
|
|
116
|
+
starred_url: 'https://api.github.com/users/jesska/starred{/owner}{/repo}',
|
|
117
|
+
subscriptions_url: 'https://api.github.com/users/jesska/subscriptions',
|
|
118
|
+
organizations_url: 'https://api.github.com/users/jesska/orgs',
|
|
119
|
+
repos_url: 'https://api.github.com/users/jesska/repos',
|
|
120
|
+
events_url: 'https://api.github.com/users/jesska/events{/privacy}',
|
|
121
|
+
received_events_url: 'https://api.github.com/users/jesska/received_events',
|
|
122
|
+
type: 'User',
|
|
123
|
+
site_admin: false,
|
|
124
124
|
},
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
125
|
+
html_url: 'https://github.com/activepieces/activepieces',
|
|
126
|
+
description: 'Automate!',
|
|
127
|
+
fork: false,
|
|
128
|
+
url: 'https://api.github.com/repos/activepieces/activepieces',
|
|
129
|
+
forks_url: 'https://api.github.com/repos/activepieces/activepieces/forks',
|
|
130
|
+
keys_url: 'https://api.github.com/repos/activepieces/activepieces/keys{/key_id}',
|
|
131
|
+
collaborators_url: 'https://api.github.com/repos/activepieces/activepieces/collaborators{/collaborator}',
|
|
132
|
+
teams_url: 'https://api.github.com/repos/activepieces/activepieces/teams',
|
|
133
|
+
hooks_url: 'https://api.github.com/repos/activepieces/activepieces/hooks',
|
|
134
|
+
issue_events_url: 'https://api.github.com/repos/activepieces/activepieces/issues/events{/number}',
|
|
135
|
+
events_url: 'https://api.github.com/repos/activepieces/activepieces/events',
|
|
136
|
+
assignees_url: 'https://api.github.com/repos/activepieces/activepieces/assignees{/user}',
|
|
137
|
+
branches_url: 'https://api.github.com/repos/activepieces/activepieces/branches{/branch}',
|
|
138
|
+
tags_url: 'https://api.github.com/repos/activepieces/activepieces/tags',
|
|
139
|
+
blobs_url: 'https://api.github.com/repos/activepieces/activepieces/git/blobs{/sha}',
|
|
140
|
+
git_tags_url: 'https://api.github.com/repos/activepieces/activepieces/git/tags{/sha}',
|
|
141
|
+
git_refs_url: 'https://api.github.com/repos/activepieces/activepieces/git/refs{/sha}',
|
|
142
|
+
trees_url: 'https://api.github.com/repos/activepieces/activepieces/git/trees{/sha}',
|
|
143
|
+
statuses_url: 'https://api.github.com/repos/activepieces/activepieces/statuses/{sha}',
|
|
144
|
+
languages_url: 'https://api.github.com/repos/activepieces/activepieces/languages',
|
|
145
|
+
stargazers_url: 'https://api.github.com/repos/activepieces/activepieces/stargazers',
|
|
146
|
+
contributors_url: 'https://api.github.com/repos/activepieces/activepieces/contributors',
|
|
147
|
+
subscribers_url: 'https://api.github.com/repos/activepieces/activepieces/subscribers',
|
|
148
|
+
subscription_url: 'https://api.github.com/repos/activepieces/activepieces/subscription',
|
|
149
|
+
commits_url: 'https://api.github.com/repos/activepieces/activepieces/commits{/sha}',
|
|
150
|
+
git_commits_url: 'https://api.github.com/repos/activepieces/activepieces/git/commits{/sha}',
|
|
151
|
+
comments_url: 'https://api.github.com/repos/activepieces/activepieces/comments{/number}',
|
|
152
|
+
issue_comment_url: 'https://api.github.com/repos/activepieces/activepieces/issues/comments{/number}',
|
|
153
|
+
contents_url: 'https://api.github.com/repos/activepieces/activepieces/contents/{+path}',
|
|
154
|
+
compare_url: 'https://api.github.com/repos/activepieces/activepieces/compare/{base}...{head}',
|
|
155
|
+
merges_url: 'https://api.github.com/repos/activepieces/activepieces/merges',
|
|
156
|
+
archive_url: 'https://api.github.com/repos/activepieces/activepieces/{archive_format}{/ref}',
|
|
157
|
+
downloads_url: 'https://api.github.com/repos/activepieces/activepieces/downloads',
|
|
158
|
+
issues_url: 'https://api.github.com/repos/activepieces/activepieces/issues{/number}',
|
|
159
|
+
pulls_url: 'https://api.github.com/repos/activepieces/activepieces/pulls{/number}',
|
|
160
|
+
milestones_url: 'https://api.github.com/repos/activepieces/activepieces/milestones{/number}',
|
|
161
|
+
notifications_url: 'https://api.github.com/repos/activepieces/activepieces/notifications{?since,all,participating}',
|
|
162
|
+
labels_url: 'https://api.github.com/repos/activepieces/activepieces/labels{/name}',
|
|
163
|
+
releases_url: 'https://api.github.com/repos/activepieces/activepieces/releases{/id}',
|
|
164
|
+
deployments_url: 'https://api.github.com/repos/activepieces/activepieces/deployments',
|
|
165
|
+
created_at: '2019-01-22T20:57:01Z',
|
|
166
|
+
updated_at: '2023-02-18T11:05:49Z',
|
|
167
|
+
pushed_at: '2019-02-22T20:19:33Z',
|
|
168
|
+
git_url: 'git://github.com/activepieces/activepieces.git',
|
|
169
|
+
ssh_url: 'git@github.com/activepieces/activepieces.git',
|
|
170
|
+
clone_url: 'https://github.com/activepieces/activepieces.git',
|
|
171
|
+
svn_url: 'https://github.com/activepieces/activepieces',
|
|
172
|
+
homepage: null,
|
|
173
|
+
size: 6637,
|
|
174
|
+
stargazers_count: 1,
|
|
175
|
+
watchers_count: 1,
|
|
176
|
+
language: 'CSS',
|
|
177
|
+
has_issues: true,
|
|
178
|
+
has_projects: true,
|
|
179
|
+
has_downloads: true,
|
|
180
|
+
has_wiki: false,
|
|
181
|
+
has_pages: false,
|
|
182
|
+
has_discussions: false,
|
|
183
|
+
forks_count: 0,
|
|
184
|
+
mirror_url: null,
|
|
185
|
+
archived: false,
|
|
186
|
+
disabled: false,
|
|
187
|
+
open_issues_count: 1,
|
|
188
|
+
license: null,
|
|
189
|
+
allow_forking: true,
|
|
190
|
+
is_template: false,
|
|
191
|
+
web_commit_signoff_required: false,
|
|
192
|
+
topics: [],
|
|
193
|
+
visibility: 'public',
|
|
194
|
+
forks: 0,
|
|
195
|
+
open_issues: 1,
|
|
196
|
+
watchers: 1,
|
|
197
|
+
default_branch: 'master',
|
|
198
198
|
},
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
}
|
|
219
|
-
}
|
|
199
|
+
sender: {
|
|
200
|
+
login: 'activepieces',
|
|
201
|
+
id: 383262,
|
|
202
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
203
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/383262?v=4',
|
|
204
|
+
gravatar_id: '',
|
|
205
|
+
url: 'https://api.github.com/users/activepieces',
|
|
206
|
+
html_url: 'https://github.com/activepieces',
|
|
207
|
+
followers_url: 'https://api.github.com/users/activepieces/followers',
|
|
208
|
+
following_url: 'https://api.github.com/users/activepieces/following{/other_user}',
|
|
209
|
+
gists_url: 'https://api.github.com/users/activepieces/gists{/gist_id}',
|
|
210
|
+
starred_url: 'https://api.github.com/users/activepieces/starred{/owner}{/repo}',
|
|
211
|
+
subscriptions_url: 'https://api.github.com/users/activepieces/subscriptions',
|
|
212
|
+
organizations_url: 'https://api.github.com/users/activepieces/orgs',
|
|
213
|
+
repos_url: 'https://api.github.com/users/activepieces/repos',
|
|
214
|
+
events_url: 'https://api.github.com/users/activepieces/events{/privacy}',
|
|
215
|
+
received_events_url: 'https://api.github.com/users/activepieces/received_events',
|
|
216
|
+
type: 'User',
|
|
217
|
+
site_admin: false,
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
name: GithubEventType.STAR,
|
|
223
|
-
displayName:
|
|
224
|
-
description:
|
|
223
|
+
displayName: 'New Star',
|
|
224
|
+
description: 'Trigger when there is activity relating to repository stars.',
|
|
225
225
|
sampleData: {
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
226
|
+
action: 'created',
|
|
227
|
+
starred_at: '2023-02-18T11:18:55Z',
|
|
228
|
+
repository: {
|
|
229
|
+
id: 167066548,
|
|
230
|
+
node_id: 'MDEwOlJlcG9zaXRvcnkxNjcwNjYwODg=',
|
|
231
|
+
name: 'csv-2-pdf-report-tool',
|
|
232
|
+
full_name: 'activepieces/activepieces',
|
|
233
|
+
private: false,
|
|
234
|
+
owner: {
|
|
235
|
+
login: 'activepieces',
|
|
236
|
+
id: 303261,
|
|
237
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
238
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/393261?v=4',
|
|
239
|
+
gravatar_id: '',
|
|
240
|
+
url: 'https://api.github.com/users/activepieces',
|
|
241
|
+
html_url: 'https://github.com/activepieces',
|
|
242
|
+
followers_url: 'https://api.github.com/users/activepieces/followers',
|
|
243
|
+
following_url: 'https://api.github.com/users/activepieces/following{/other_user}',
|
|
244
|
+
gists_url: 'https://api.github.com/users/activepieces/gists{/gist_id}',
|
|
245
|
+
starred_url: 'https://api.github.com/users/activepieces/starred{/owner}{/repo}',
|
|
246
|
+
subscriptions_url: 'https://api.github.com/users/activepieces/subscriptions',
|
|
247
|
+
organizations_url: 'https://api.github.com/users/activepieces/orgs',
|
|
248
|
+
repos_url: 'https://api.github.com/users/activepieces/repos',
|
|
249
|
+
events_url: 'https://api.github.com/users/activepieces/events{/privacy}',
|
|
250
|
+
received_events_url: 'https://api.github.com/users/activepieces/received_events',
|
|
251
|
+
type: 'User',
|
|
252
|
+
site_admin: false,
|
|
253
253
|
},
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
254
|
+
html_url: 'https://github.com/activepieces/activepieces',
|
|
255
|
+
description: 'Automate',
|
|
256
|
+
fork: false,
|
|
257
|
+
url: 'https://api.github.com/repos/activepieces/activepieces',
|
|
258
|
+
forks_url: 'https://api.github.com/repos/activepieces/activepieces/forks',
|
|
259
|
+
keys_url: 'https://api.github.com/repos/activepieces/activepieces/keys{/key_id}',
|
|
260
|
+
collaborators_url: 'https://api.github.com/repos/activepieces/activepieces/collaborators{/collaborator}',
|
|
261
|
+
teams_url: 'https://api.github.com/repos/activepieces/activepieces/teams',
|
|
262
|
+
hooks_url: 'https://api.github.com/repos/activepieces/activepieces/hooks',
|
|
263
|
+
issue_events_url: 'https://api.github.com/repos/activepieces/activepieces/issues/events{/number}',
|
|
264
|
+
events_url: 'https://api.github.com/repos/activepieces/activepieces/events',
|
|
265
|
+
assignees_url: 'https://api.github.com/repos/activepieces/activepieces/assignees{/user}',
|
|
266
|
+
branches_url: 'https://api.github.com/repos/activepieces/activepieces/branches{/branch}',
|
|
267
|
+
tags_url: 'https://api.github.com/repos/activepieces/activepieces/tags',
|
|
268
|
+
blobs_url: 'https://api.github.com/repos/activepieces/activepieces/git/blobs{/sha}',
|
|
269
|
+
git_tags_url: 'https://api.github.com/repos/activepieces/activepieces/git/tags{/sha}',
|
|
270
|
+
git_refs_url: 'https://api.github.com/repos/activepieces/activepieces/git/refs{/sha}',
|
|
271
|
+
trees_url: 'https://api.github.com/repos/activepieces/activepieces/git/trees{/sha}',
|
|
272
|
+
statuses_url: 'https://api.github.com/repos/activepieces/activepieces/statuses/{sha}',
|
|
273
|
+
languages_url: 'https://api.github.com/repos/activepieces/activepieces/languages',
|
|
274
|
+
stargazers_url: 'https://api.github.com/repos/activepieces/activepieces/stargazers',
|
|
275
|
+
contributors_url: 'https://api.github.com/repos/activepieces/activepieces/contributors',
|
|
276
|
+
subscribers_url: 'https://api.github.com/repos/activepieces/activepieces/subscribers',
|
|
277
|
+
subscription_url: 'https://api.github.com/repos/activepieces/activepieces/subscription',
|
|
278
|
+
commits_url: 'https://api.github.com/repos/activepieces/activepieces/commits{/sha}',
|
|
279
|
+
git_commits_url: 'https://api.github.com/repos/activepieces/activepieces/git/commits{/sha}',
|
|
280
|
+
comments_url: 'https://api.github.com/repos/activepieces/activepieces/comments{/number}',
|
|
281
|
+
issue_comment_url: 'https://api.github.com/repos/activepieces/activepieces/issues/comments{/number}',
|
|
282
|
+
contents_url: 'https://api.github.com/repos/activepieces/activepieces/contents/{+path}',
|
|
283
|
+
compare_url: 'https://api.github.com/repos/activepieces/activepieces/compare/{base}...{head}',
|
|
284
|
+
merges_url: 'https://api.github.com/repos/activepieces/activepieces/merges',
|
|
285
|
+
archive_url: 'https://api.github.com/repos/activepieces/activepieces/{archive_format}{/ref}',
|
|
286
|
+
downloads_url: 'https://api.github.com/repos/activepieces/activepieces/downloads',
|
|
287
|
+
issues_url: 'https://api.github.com/repos/activepieces/activepieces/issues{/number}',
|
|
288
|
+
pulls_url: 'https://api.github.com/repos/activepieces/activepieces/pulls{/number}',
|
|
289
|
+
milestones_url: 'https://api.github.com/repos/activepieces/activepieces/milestones{/number}',
|
|
290
|
+
notifications_url: 'https://api.github.com/repos/activepieces/activepieces/notifications{?since,all,participating}',
|
|
291
|
+
labels_url: 'https://api.github.com/repos/activepieces/activepieces/labels{/name}',
|
|
292
|
+
releases_url: 'https://api.github.com/repos/activepieces/activepieces/releases{/id}',
|
|
293
|
+
deployments_url: 'https://api.github.com/repos/activepieces/activepieces/deployments',
|
|
294
|
+
created_at: '2019-01-22T20:57:01Z',
|
|
295
|
+
updated_at: '2023-02-18T11:18:55Z',
|
|
296
|
+
pushed_at: '2019-02-22T20:19:33Z',
|
|
297
|
+
git_url: 'git://github.com/activepieces/activepieces.git',
|
|
298
|
+
ssh_url: 'git@github.com:activepieces/activepieces.git',
|
|
299
|
+
clone_url: 'https://github.com/activepieces/activepieces.git',
|
|
300
|
+
svn_url: 'https://github.com/activepieces/activepieces',
|
|
301
|
+
homepage: null,
|
|
302
|
+
size: 6637,
|
|
303
|
+
stargazers_count: 1,
|
|
304
|
+
watchers_count: 1,
|
|
305
|
+
language: 'CSS',
|
|
306
|
+
has_issues: true,
|
|
307
|
+
has_projects: true,
|
|
308
|
+
has_downloads: true,
|
|
309
|
+
has_wiki: false,
|
|
310
|
+
has_pages: false,
|
|
311
|
+
has_discussions: false,
|
|
312
|
+
forks_count: 0,
|
|
313
|
+
mirror_url: null,
|
|
314
|
+
archived: false,
|
|
315
|
+
disabled: false,
|
|
316
|
+
open_issues_count: 1,
|
|
317
|
+
license: null,
|
|
318
|
+
allow_forking: true,
|
|
319
|
+
is_template: false,
|
|
320
|
+
web_commit_signoff_required: false,
|
|
321
|
+
topics: [],
|
|
322
|
+
visibility: 'public',
|
|
323
|
+
forks: 0,
|
|
324
|
+
open_issues: 1,
|
|
325
|
+
watchers: 1,
|
|
326
|
+
default_branch: 'master',
|
|
327
|
+
},
|
|
328
|
+
sender: {
|
|
329
|
+
login: 'activepieces',
|
|
330
|
+
id: 383262,
|
|
331
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
332
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/383262?v=4',
|
|
333
|
+
gravatar_id: '',
|
|
334
|
+
url: 'https://api.github.com/users/activepieces',
|
|
335
|
+
html_url: 'https://github.com/activepieces',
|
|
336
|
+
followers_url: 'https://api.github.com/users/activepieces/followers',
|
|
337
|
+
following_url: 'https://api.github.com/users/activepieces/following{/other_user}',
|
|
338
|
+
gists_url: 'https://api.github.com/users/activepieces/gists{/gist_id}',
|
|
339
|
+
starred_url: 'https://api.github.com/users/activepieces/starred{/owner}{/repo}',
|
|
340
|
+
subscriptions_url: 'https://api.github.com/users/activepieces/subscriptions',
|
|
341
|
+
organizations_url: 'https://api.github.com/users/activepieces/orgs',
|
|
342
|
+
repos_url: 'https://api.github.com/users/activepieces/repos',
|
|
343
|
+
events_url: 'https://api.github.com/users/activepieces/events{/privacy}',
|
|
344
|
+
received_events_url: 'https://api.github.com/users/activepieces/received_events',
|
|
345
|
+
type: 'User',
|
|
346
|
+
site_admin: false,
|
|
327
347
|
},
|
|
328
|
-
|
|
329
|
-
"login": "activepieces",
|
|
330
|
-
"id": 383262,
|
|
331
|
-
"node_id": "MDQ6VXNlcjM5MzI2MQ==",
|
|
332
|
-
"avatar_url": "https://avatars.githubusercontent.com/u/383262?v=4",
|
|
333
|
-
"gravatar_id": "",
|
|
334
|
-
"url": "https://api.github.com/users/activepieces",
|
|
335
|
-
"html_url": "https://github.com/activepieces",
|
|
336
|
-
"followers_url": "https://api.github.com/users/activepieces/followers",
|
|
337
|
-
"following_url": "https://api.github.com/users/activepieces/following{/other_user}",
|
|
338
|
-
"gists_url": "https://api.github.com/users/activepieces/gists{/gist_id}",
|
|
339
|
-
"starred_url": "https://api.github.com/users/activepieces/starred{/owner}{/repo}",
|
|
340
|
-
"subscriptions_url": "https://api.github.com/users/activepieces/subscriptions",
|
|
341
|
-
"organizations_url": "https://api.github.com/users/activepieces/orgs",
|
|
342
|
-
"repos_url": "https://api.github.com/users/activepieces/repos",
|
|
343
|
-
"events_url": "https://api.github.com/users/activepieces/events{/privacy}",
|
|
344
|
-
"received_events_url": "https://api.github.com/users/activepieces/received_events",
|
|
345
|
-
"type": "User",
|
|
346
|
-
"site_admin": false
|
|
347
|
-
}
|
|
348
|
-
}
|
|
348
|
+
},
|
|
349
349
|
},
|
|
350
350
|
{
|
|
351
351
|
name: GithubEventType.ISSUES,
|
|
352
|
-
displayName:
|
|
353
|
-
description:
|
|
352
|
+
displayName: 'New Issue',
|
|
353
|
+
description: 'Triggers when there is activity relating to an issue.',
|
|
354
354
|
sampleData: {
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
355
|
+
action: 'opened',
|
|
356
|
+
issue: {
|
|
357
|
+
url: 'https://api.github.com/repos/activepieces/activepieces/issues/1',
|
|
358
|
+
repository_url: 'https://api.github.com/repos/activepieces/activepieces',
|
|
359
|
+
labels_url: 'https://api.github.com/repos/activepieces/activepieces/issues/1/labels{/name}',
|
|
360
|
+
comments_url: 'https://api.github.com/repos/activepieces/activepieces/issues/1/comments',
|
|
361
|
+
events_url: 'https://api.github.com/repos/activepieces/activepieces/issues/1/events',
|
|
362
|
+
html_url: 'https://github.com/activepieces/activepieces/issues/1',
|
|
363
|
+
id: 1590311655,
|
|
364
|
+
node_id: 'I_kwDOCfU56M5eyjrn',
|
|
365
|
+
number: 1,
|
|
366
|
+
title: 'New Issue',
|
|
367
|
+
user: {
|
|
368
|
+
login: 'jesska',
|
|
369
|
+
id: 391061,
|
|
370
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
371
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/393261?v=4',
|
|
372
|
+
gravatar_id: '',
|
|
373
|
+
url: 'https://api.github.com/users/jesska',
|
|
374
|
+
html_url: 'https://github.com/jesska',
|
|
375
|
+
followers_url: 'https://api.github.com/users/jesska/followers',
|
|
376
|
+
following_url: 'https://api.github.com/users/jesska/following{/other_user}',
|
|
377
|
+
gists_url: 'https://api.github.com/users/jesska/gists{/gist_id}',
|
|
378
|
+
starred_url: 'https://api.github.com/users/jesska/starred{/owner}{/repo}',
|
|
379
|
+
subscriptions_url: 'https://api.github.com/users/jesska/subscriptions',
|
|
380
|
+
organizations_url: 'https://api.github.com/users/jesska/orgs',
|
|
381
|
+
repos_url: 'https://api.github.com/users/jesska/repos',
|
|
382
|
+
events_url: 'https://api.github.com/users/jesska/events{/privacy}',
|
|
383
|
+
received_events_url: 'https://api.github.com/users/jesska/received_events',
|
|
384
|
+
type: 'User',
|
|
385
|
+
site_admin: false,
|
|
386
386
|
},
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
387
|
+
labels: [],
|
|
388
|
+
state: 'open',
|
|
389
|
+
locked: false,
|
|
390
|
+
assignee: null,
|
|
391
|
+
assignees: [],
|
|
392
|
+
milestone: null,
|
|
393
|
+
comments: 0,
|
|
394
|
+
created_at: '2023-02-18T11:07:40Z',
|
|
395
|
+
updated_at: '2023-02-18T11:07:40Z',
|
|
396
|
+
closed_at: null,
|
|
397
|
+
author_association: 'OWNER',
|
|
398
|
+
active_lock_reason: null,
|
|
399
|
+
body: 'Test',
|
|
400
|
+
reactions: {
|
|
401
|
+
url: 'https://api.github.com/repos/activepieces/activepieces/issues/1/reactions',
|
|
402
|
+
total_count: 0,
|
|
403
|
+
'+1': 0,
|
|
404
|
+
'-1': 0,
|
|
405
|
+
laugh: 0,
|
|
406
|
+
hooray: 0,
|
|
407
|
+
confused: 0,
|
|
408
|
+
heart: 0,
|
|
409
|
+
rocket: 0,
|
|
410
|
+
eyes: 0,
|
|
411
411
|
},
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
412
|
+
timeline_url: 'https://api.github.com/repos/activepieces/activepieces/issues/1/timeline',
|
|
413
|
+
performed_via_github_app: null,
|
|
414
|
+
state_reason: null,
|
|
415
415
|
},
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
416
|
+
repository: {
|
|
417
|
+
id: 167066088,
|
|
418
|
+
node_id: 'MDEwOlJlcG9zaXRvcnkxNjcwNjYwODg=',
|
|
419
|
+
name: 'activepieces',
|
|
420
|
+
full_name: 'activepieces/activepieces',
|
|
421
|
+
private: false,
|
|
422
|
+
owner: {
|
|
423
|
+
login: 'jesska',
|
|
424
|
+
id: 393261,
|
|
425
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
426
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/393261?v=4',
|
|
427
|
+
gravatar_id: '',
|
|
428
|
+
url: 'https://api.github.com/users/jesska',
|
|
429
|
+
html_url: 'https://github.com/jesska',
|
|
430
|
+
followers_url: 'https://api.github.com/users/jesska/followers',
|
|
431
|
+
following_url: 'https://api.github.com/users/jesska/following{/other_user}',
|
|
432
|
+
gists_url: 'https://api.github.com/users/jesska/gists{/gist_id}',
|
|
433
|
+
starred_url: 'https://api.github.com/users/jesska/starred{/owner}{/repo}',
|
|
434
|
+
subscriptions_url: 'https://api.github.com/users/jesska/subscriptions',
|
|
435
|
+
organizations_url: 'https://api.github.com/users/jesska/orgs',
|
|
436
|
+
repos_url: 'https://api.github.com/users/jesska/repos',
|
|
437
|
+
events_url: 'https://api.github.com/users/jesska/events{/privacy}',
|
|
438
|
+
received_events_url: 'https://api.github.com/users/jesska/received_events',
|
|
439
|
+
type: 'User',
|
|
440
|
+
site_admin: false,
|
|
441
441
|
},
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
442
|
+
html_url: 'https://github.com/activepieces/activepieces',
|
|
443
|
+
description: 'Automate!',
|
|
444
|
+
fork: false,
|
|
445
|
+
url: 'https://api.github.com/repos/activepieces/activepieces',
|
|
446
|
+
forks_url: 'https://api.github.com/repos/activepieces/activepieces/forks',
|
|
447
|
+
keys_url: 'https://api.github.com/repos/activepieces/activepieces/keys{/key_id}',
|
|
448
|
+
collaborators_url: 'https://api.github.com/repos/activepieces/activepieces/collaborators{/collaborator}',
|
|
449
|
+
teams_url: 'https://api.github.com/repos/activepieces/activepieces/teams',
|
|
450
|
+
hooks_url: 'https://api.github.com/repos/activepieces/activepieces/hooks',
|
|
451
|
+
issue_events_url: 'https://api.github.com/repos/activepieces/activepieces/issues/events{/number}',
|
|
452
|
+
events_url: 'https://api.github.com/repos/activepieces/activepieces/events',
|
|
453
|
+
assignees_url: 'https://api.github.com/repos/activepieces/activepieces/assignees{/user}',
|
|
454
|
+
branches_url: 'https://api.github.com/repos/activepieces/activepieces/branches{/branch}',
|
|
455
|
+
tags_url: 'https://api.github.com/repos/activepieces/activepieces/tags',
|
|
456
|
+
blobs_url: 'https://api.github.com/repos/activepieces/activepieces/git/blobs{/sha}',
|
|
457
|
+
git_tags_url: 'https://api.github.com/repos/activepieces/activepieces/git/tags{/sha}',
|
|
458
|
+
git_refs_url: 'https://api.github.com/repos/activepieces/activepieces/git/refs{/sha}',
|
|
459
|
+
trees_url: 'https://api.github.com/repos/activepieces/activepieces/git/trees{/sha}',
|
|
460
|
+
statuses_url: 'https://api.github.com/repos/activepieces/activepieces/statuses/{sha}',
|
|
461
|
+
languages_url: 'https://api.github.com/repos/activepieces/activepieces/languages',
|
|
462
|
+
stargazers_url: 'https://api.github.com/repos/activepieces/activepieces/stargazers',
|
|
463
|
+
contributors_url: 'https://api.github.com/repos/activepieces/activepieces/contributors',
|
|
464
|
+
subscribers_url: 'https://api.github.com/repos/activepieces/activepieces/subscribers',
|
|
465
|
+
subscription_url: 'https://api.github.com/repos/activepieces/activepieces/subscription',
|
|
466
|
+
commits_url: 'https://api.github.com/repos/activepieces/activepieces/commits{/sha}',
|
|
467
|
+
git_commits_url: 'https://api.github.com/repos/activepieces/activepieces/git/commits{/sha}',
|
|
468
|
+
comments_url: 'https://api.github.com/repos/activepieces/activepieces/comments{/number}',
|
|
469
|
+
issue_comment_url: 'https://api.github.com/repos/activepieces/activepieces/issues/comments{/number}',
|
|
470
|
+
contents_url: 'https://api.github.com/repos/activepieces/activepieces/contents/{+path}',
|
|
471
|
+
compare_url: 'https://api.github.com/repos/activepieces/activepieces/compare/{base}...{head}',
|
|
472
|
+
merges_url: 'https://api.github.com/repos/activepieces/activepieces/merges',
|
|
473
|
+
archive_url: 'https://api.github.com/repos/activepieces/activepieces/{archive_format}{/ref}',
|
|
474
|
+
downloads_url: 'https://api.github.com/repos/activepieces/activepieces/downloads',
|
|
475
|
+
issues_url: 'https://api.github.com/repos/activepieces/activepieces/issues{/number}',
|
|
476
|
+
pulls_url: 'https://api.github.com/repos/activepieces/activepieces/pulls{/number}',
|
|
477
|
+
milestones_url: 'https://api.github.com/repos/activepieces/activepieces/milestones{/number}',
|
|
478
|
+
notifications_url: 'https://api.github.com/repos/activepieces/activepieces/notifications{?since,all,participating}',
|
|
479
|
+
labels_url: 'https://api.github.com/repos/activepieces/activepieces/labels{/name}',
|
|
480
|
+
releases_url: 'https://api.github.com/repos/activepieces/activepieces/releases{/id}',
|
|
481
|
+
deployments_url: 'https://api.github.com/repos/activepieces/activepieces/deployments',
|
|
482
|
+
created_at: '2019-01-22T20:57:01Z',
|
|
483
|
+
updated_at: '2023-02-18T11:05:49Z',
|
|
484
|
+
pushed_at: '2019-02-22T20:19:33Z',
|
|
485
|
+
git_url: 'git://github.com/activepieces/activepieces.git',
|
|
486
|
+
ssh_url: 'git@github.com/activepieces/activepieces.git',
|
|
487
|
+
clone_url: 'https://github.com/activepieces/activepieces.git',
|
|
488
|
+
svn_url: 'https://github.com/activepieces/activepieces',
|
|
489
|
+
homepage: null,
|
|
490
|
+
size: 6637,
|
|
491
|
+
stargazers_count: 1,
|
|
492
|
+
watchers_count: 1,
|
|
493
|
+
language: 'CSS',
|
|
494
|
+
has_issues: true,
|
|
495
|
+
has_projects: true,
|
|
496
|
+
has_downloads: true,
|
|
497
|
+
has_wiki: false,
|
|
498
|
+
has_pages: false,
|
|
499
|
+
has_discussions: false,
|
|
500
|
+
forks_count: 0,
|
|
501
|
+
mirror_url: null,
|
|
502
|
+
archived: false,
|
|
503
|
+
disabled: false,
|
|
504
|
+
open_issues_count: 1,
|
|
505
|
+
license: null,
|
|
506
|
+
allow_forking: true,
|
|
507
|
+
is_template: false,
|
|
508
|
+
web_commit_signoff_required: false,
|
|
509
|
+
topics: [],
|
|
510
|
+
visibility: 'public',
|
|
511
|
+
forks: 0,
|
|
512
|
+
open_issues: 1,
|
|
513
|
+
watchers: 1,
|
|
514
|
+
default_branch: 'master',
|
|
515
515
|
},
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
}
|
|
516
|
+
sender: {
|
|
517
|
+
login: 'activepieces',
|
|
518
|
+
id: 383262,
|
|
519
|
+
node_id: 'MDQ6VXNlcjM5MzI2MQ==',
|
|
520
|
+
avatar_url: 'https://avatars.githubusercontent.com/u/383262?v=4',
|
|
521
|
+
gravatar_id: '',
|
|
522
|
+
url: 'https://api.github.com/users/activepieces',
|
|
523
|
+
html_url: 'https://github.com/activepieces',
|
|
524
|
+
followers_url: 'https://api.github.com/users/activepieces/followers',
|
|
525
|
+
following_url: 'https://api.github.com/users/activepieces/following{/other_user}',
|
|
526
|
+
gists_url: 'https://api.github.com/users/activepieces/gists{/gist_id}',
|
|
527
|
+
starred_url: 'https://api.github.com/users/activepieces/starred{/owner}{/repo}',
|
|
528
|
+
subscriptions_url: 'https://api.github.com/users/activepieces/subscriptions',
|
|
529
|
+
organizations_url: 'https://api.github.com/users/activepieces/orgs',
|
|
530
|
+
repos_url: 'https://api.github.com/users/activepieces/repos',
|
|
531
|
+
events_url: 'https://api.github.com/users/activepieces/events{/privacy}',
|
|
532
|
+
received_events_url: 'https://api.github.com/users/activepieces/received_events',
|
|
533
|
+
type: 'User',
|
|
534
|
+
site_admin: false,
|
|
535
|
+
},
|
|
536
|
+
},
|
|
537
|
+
},
|
|
538
538
|
];
|
|
539
539
|
exports.githubTriggers = exports.registered.map((def) => (0, register_trigger_1.githubRegisterTrigger)(def));
|
|
540
540
|
//# sourceMappingURL=index.js.map
|