@activepieces/piece-github 0.5.1 → 0.5.3
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 +16 -13
- package/src/i18n/ca.json +86 -0
- package/src/i18n/de.json +86 -0
- package/src/i18n/es.json +86 -0
- package/src/i18n/fr.json +86 -0
- package/src/i18n/hi.json +86 -0
- package/src/i18n/id.json +86 -0
- package/src/i18n/ja.json +86 -0
- package/src/i18n/nl.json +86 -0
- package/src/i18n/pt.json +86 -0
- package/src/i18n/ru.json +86 -0
- package/src/i18n/translation.json +86 -0
- package/src/i18n/vi.json +86 -0
- package/src/i18n/zh.json +86 -0
- package/src/lib/actions/create-comment-on-a-issue.js.map +1 -1
- package/src/lib/actions/create-commit-comment.js.map +1 -1
- package/src/lib/actions/create-discussion-comment.js.map +1 -1
- package/src/lib/actions/create-issue.js.map +1 -1
- package/src/lib/actions/create-pull-request-review-comment.js.map +1 -1
- package/src/lib/actions/get-issue-information.js.map +1 -1
- package/src/lib/actions/lock-issue.js.map +1 -1
- package/src/lib/actions/raw-graphql-query.js.map +1 -1
- package/src/lib/actions/unlock-issue.js.map +1 -1
- package/src/lib/common/index.js.map +1 -1
- package/src/lib/trigger/index.d.ts +548 -2
- package/src/lib/trigger/index.js +490 -8
- package/src/lib/trigger/index.js.map +1 -1
- package/src/lib/trigger/register-trigger.js +5 -1
- package/src/lib/trigger/register-trigger.js.map +1 -1
|
@@ -3,7 +3,9 @@ export declare enum GithubEventType {
|
|
|
3
3
|
PULL_REQUEST = "pull_request",
|
|
4
4
|
STAR = "star",
|
|
5
5
|
ISSUES = "issues",
|
|
6
|
-
PUSH = "push"
|
|
6
|
+
PUSH = "push",
|
|
7
|
+
DISCUSSION = "discussion",
|
|
8
|
+
DISCUSSION_COMMENT = "discussion_comment"
|
|
7
9
|
}
|
|
8
10
|
export declare const registered: ({
|
|
9
11
|
name: GithubEventType;
|
|
@@ -117,6 +119,7 @@ export declare const registered: ({
|
|
|
117
119
|
received_events_url: string;
|
|
118
120
|
type: string;
|
|
119
121
|
site_admin: boolean;
|
|
122
|
+
user_view_type?: undefined;
|
|
120
123
|
};
|
|
121
124
|
html_url: string;
|
|
122
125
|
description: string;
|
|
@@ -191,6 +194,7 @@ export declare const registered: ({
|
|
|
191
194
|
open_issues: number;
|
|
192
195
|
watchers: number;
|
|
193
196
|
default_branch: string;
|
|
197
|
+
custom_properties?: undefined;
|
|
194
198
|
};
|
|
195
199
|
sender: {
|
|
196
200
|
login: string;
|
|
@@ -211,6 +215,7 @@ export declare const registered: ({
|
|
|
211
215
|
received_events_url: string;
|
|
212
216
|
type: string;
|
|
213
217
|
site_admin: boolean;
|
|
218
|
+
user_view_type?: undefined;
|
|
214
219
|
};
|
|
215
220
|
starred_at?: undefined;
|
|
216
221
|
issue?: undefined;
|
|
@@ -228,6 +233,8 @@ export declare const registered: ({
|
|
|
228
233
|
organization?: undefined;
|
|
229
234
|
pusher?: undefined;
|
|
230
235
|
ref?: undefined;
|
|
236
|
+
discussion?: undefined;
|
|
237
|
+
comment?: undefined;
|
|
231
238
|
};
|
|
232
239
|
} | {
|
|
233
240
|
name: GithubEventType;
|
|
@@ -261,6 +268,7 @@ export declare const registered: ({
|
|
|
261
268
|
received_events_url: string;
|
|
262
269
|
type: string;
|
|
263
270
|
site_admin: boolean;
|
|
271
|
+
user_view_type?: undefined;
|
|
264
272
|
};
|
|
265
273
|
html_url: string;
|
|
266
274
|
description: string;
|
|
@@ -335,6 +343,7 @@ export declare const registered: ({
|
|
|
335
343
|
open_issues: number;
|
|
336
344
|
watchers: number;
|
|
337
345
|
default_branch: string;
|
|
346
|
+
custom_properties?: undefined;
|
|
338
347
|
};
|
|
339
348
|
sender: {
|
|
340
349
|
login: string;
|
|
@@ -355,6 +364,7 @@ export declare const registered: ({
|
|
|
355
364
|
received_events_url: string;
|
|
356
365
|
type: string;
|
|
357
366
|
site_admin: boolean;
|
|
367
|
+
user_view_type?: undefined;
|
|
358
368
|
};
|
|
359
369
|
number?: undefined;
|
|
360
370
|
pull_request?: undefined;
|
|
@@ -373,6 +383,8 @@ export declare const registered: ({
|
|
|
373
383
|
organization?: undefined;
|
|
374
384
|
pusher?: undefined;
|
|
375
385
|
ref?: undefined;
|
|
386
|
+
discussion?: undefined;
|
|
387
|
+
comment?: undefined;
|
|
376
388
|
};
|
|
377
389
|
} | {
|
|
378
390
|
name: GithubEventType;
|
|
@@ -465,6 +477,7 @@ export declare const registered: ({
|
|
|
465
477
|
received_events_url: string;
|
|
466
478
|
type: string;
|
|
467
479
|
site_admin: boolean;
|
|
480
|
+
user_view_type?: undefined;
|
|
468
481
|
};
|
|
469
482
|
html_url: string;
|
|
470
483
|
description: string;
|
|
@@ -539,6 +552,7 @@ export declare const registered: ({
|
|
|
539
552
|
open_issues: number;
|
|
540
553
|
watchers: number;
|
|
541
554
|
default_branch: string;
|
|
555
|
+
custom_properties?: undefined;
|
|
542
556
|
};
|
|
543
557
|
sender: {
|
|
544
558
|
login: string;
|
|
@@ -559,6 +573,7 @@ export declare const registered: ({
|
|
|
559
573
|
received_events_url: string;
|
|
560
574
|
type: string;
|
|
561
575
|
site_admin: boolean;
|
|
576
|
+
user_view_type?: undefined;
|
|
562
577
|
};
|
|
563
578
|
number?: undefined;
|
|
564
579
|
pull_request?: undefined;
|
|
@@ -577,6 +592,8 @@ export declare const registered: ({
|
|
|
577
592
|
organization?: undefined;
|
|
578
593
|
pusher?: undefined;
|
|
579
594
|
ref?: undefined;
|
|
595
|
+
discussion?: undefined;
|
|
596
|
+
comment?: undefined;
|
|
580
597
|
};
|
|
581
598
|
} | {
|
|
582
599
|
name: GithubEventType;
|
|
@@ -614,7 +631,20 @@ export declare const registered: ({
|
|
|
614
631
|
forced: boolean;
|
|
615
632
|
head_commit: {};
|
|
616
633
|
installation: {};
|
|
617
|
-
organization: {
|
|
634
|
+
organization: {
|
|
635
|
+
login?: undefined;
|
|
636
|
+
id?: undefined;
|
|
637
|
+
node_id?: undefined;
|
|
638
|
+
url?: undefined;
|
|
639
|
+
repos_url?: undefined;
|
|
640
|
+
events_url?: undefined;
|
|
641
|
+
hooks_url?: undefined;
|
|
642
|
+
issues_url?: undefined;
|
|
643
|
+
members_url?: undefined;
|
|
644
|
+
public_members_url?: undefined;
|
|
645
|
+
avatar_url?: undefined;
|
|
646
|
+
description?: undefined;
|
|
647
|
+
};
|
|
618
648
|
pusher: {
|
|
619
649
|
username: string;
|
|
620
650
|
name: string;
|
|
@@ -646,6 +676,7 @@ export declare const registered: ({
|
|
|
646
676
|
received_events_url: string;
|
|
647
677
|
type: string;
|
|
648
678
|
site_admin: boolean;
|
|
679
|
+
user_view_type?: undefined;
|
|
649
680
|
};
|
|
650
681
|
html_url: string;
|
|
651
682
|
description: string;
|
|
@@ -720,6 +751,7 @@ export declare const registered: ({
|
|
|
720
751
|
open_issues: number;
|
|
721
752
|
watchers: number;
|
|
722
753
|
default_branch: string;
|
|
754
|
+
custom_properties?: undefined;
|
|
723
755
|
};
|
|
724
756
|
sender: {
|
|
725
757
|
login: string;
|
|
@@ -740,12 +772,526 @@ export declare const registered: ({
|
|
|
740
772
|
received_events_url: string;
|
|
741
773
|
type: string;
|
|
742
774
|
site_admin: boolean;
|
|
775
|
+
user_view_type?: undefined;
|
|
743
776
|
};
|
|
744
777
|
action?: undefined;
|
|
745
778
|
number?: undefined;
|
|
746
779
|
pull_request?: undefined;
|
|
747
780
|
starred_at?: undefined;
|
|
748
781
|
issue?: undefined;
|
|
782
|
+
discussion?: undefined;
|
|
783
|
+
comment?: undefined;
|
|
784
|
+
};
|
|
785
|
+
} | {
|
|
786
|
+
name: GithubEventType;
|
|
787
|
+
displayName: string;
|
|
788
|
+
description: string;
|
|
789
|
+
sampleData: {
|
|
790
|
+
action: string;
|
|
791
|
+
discussion: {
|
|
792
|
+
repository_url: string;
|
|
793
|
+
category: {
|
|
794
|
+
id: number;
|
|
795
|
+
node_id: string;
|
|
796
|
+
repository_id: number;
|
|
797
|
+
emoji: string;
|
|
798
|
+
name: string;
|
|
799
|
+
description: string;
|
|
800
|
+
created_at: string;
|
|
801
|
+
updated_at: string;
|
|
802
|
+
slug: string;
|
|
803
|
+
is_answerable: boolean;
|
|
804
|
+
};
|
|
805
|
+
answer_html_url: null;
|
|
806
|
+
answer_chosen_at: null;
|
|
807
|
+
answer_chosen_by: null;
|
|
808
|
+
html_url: string;
|
|
809
|
+
id: number;
|
|
810
|
+
node_id: string;
|
|
811
|
+
number: number;
|
|
812
|
+
title: string;
|
|
813
|
+
user: {
|
|
814
|
+
login: string;
|
|
815
|
+
id: number;
|
|
816
|
+
node_id: string;
|
|
817
|
+
avatar_url: string;
|
|
818
|
+
gravatar_id: string;
|
|
819
|
+
url: string;
|
|
820
|
+
html_url: string;
|
|
821
|
+
followers_url: string;
|
|
822
|
+
following_url: string;
|
|
823
|
+
gists_url: string;
|
|
824
|
+
starred_url: string;
|
|
825
|
+
subscriptions_url: string;
|
|
826
|
+
organizations_url: string;
|
|
827
|
+
repos_url: string;
|
|
828
|
+
events_url: string;
|
|
829
|
+
received_events_url: string;
|
|
830
|
+
type: string;
|
|
831
|
+
user_view_type: string;
|
|
832
|
+
site_admin: boolean;
|
|
833
|
+
};
|
|
834
|
+
labels: never[];
|
|
835
|
+
state: string;
|
|
836
|
+
state_reason: null;
|
|
837
|
+
locked: boolean;
|
|
838
|
+
comments: number;
|
|
839
|
+
created_at: string;
|
|
840
|
+
updated_at: string;
|
|
841
|
+
author_association: string;
|
|
842
|
+
active_lock_reason: null;
|
|
843
|
+
body: string;
|
|
844
|
+
reactions: {
|
|
845
|
+
url: string;
|
|
846
|
+
total_count: number;
|
|
847
|
+
'+1': number;
|
|
848
|
+
'-1': number;
|
|
849
|
+
laugh: number;
|
|
850
|
+
hooray: number;
|
|
851
|
+
confused: number;
|
|
852
|
+
heart: number;
|
|
853
|
+
rocket: number;
|
|
854
|
+
eyes: number;
|
|
855
|
+
};
|
|
856
|
+
timeline_url: string;
|
|
857
|
+
};
|
|
858
|
+
repository: {
|
|
859
|
+
id: number;
|
|
860
|
+
node_id: string;
|
|
861
|
+
name: string;
|
|
862
|
+
full_name: string;
|
|
863
|
+
private: boolean;
|
|
864
|
+
owner: {
|
|
865
|
+
login: string;
|
|
866
|
+
id: number;
|
|
867
|
+
node_id: string;
|
|
868
|
+
avatar_url: string;
|
|
869
|
+
gravatar_id: string;
|
|
870
|
+
url: string;
|
|
871
|
+
html_url: string;
|
|
872
|
+
followers_url: string;
|
|
873
|
+
following_url: string;
|
|
874
|
+
gists_url: string;
|
|
875
|
+
starred_url: string;
|
|
876
|
+
subscriptions_url: string;
|
|
877
|
+
organizations_url: string;
|
|
878
|
+
repos_url: string;
|
|
879
|
+
events_url: string;
|
|
880
|
+
received_events_url: string;
|
|
881
|
+
type: string;
|
|
882
|
+
user_view_type: string;
|
|
883
|
+
site_admin: boolean;
|
|
884
|
+
};
|
|
885
|
+
html_url: string;
|
|
886
|
+
description: string;
|
|
887
|
+
fork: boolean;
|
|
888
|
+
url: string;
|
|
889
|
+
forks_url: string;
|
|
890
|
+
keys_url: string;
|
|
891
|
+
collaborators_url: string;
|
|
892
|
+
teams_url: string;
|
|
893
|
+
hooks_url: string;
|
|
894
|
+
issue_events_url: string;
|
|
895
|
+
events_url: string;
|
|
896
|
+
assignees_url: string;
|
|
897
|
+
branches_url: string;
|
|
898
|
+
tags_url: string;
|
|
899
|
+
blobs_url: string;
|
|
900
|
+
git_tags_url: string;
|
|
901
|
+
git_refs_url: string;
|
|
902
|
+
trees_url: string;
|
|
903
|
+
statuses_url: string;
|
|
904
|
+
languages_url: string;
|
|
905
|
+
stargazers_url: string;
|
|
906
|
+
contributors_url: string;
|
|
907
|
+
subscribers_url: string;
|
|
908
|
+
subscription_url: string;
|
|
909
|
+
commits_url: string;
|
|
910
|
+
git_commits_url: string;
|
|
911
|
+
comments_url: string;
|
|
912
|
+
issue_comment_url: string;
|
|
913
|
+
contents_url: string;
|
|
914
|
+
compare_url: string;
|
|
915
|
+
merges_url: string;
|
|
916
|
+
archive_url: string;
|
|
917
|
+
downloads_url: string;
|
|
918
|
+
issues_url: string;
|
|
919
|
+
pulls_url: string;
|
|
920
|
+
milestones_url: string;
|
|
921
|
+
notifications_url: string;
|
|
922
|
+
labels_url: string;
|
|
923
|
+
releases_url: string;
|
|
924
|
+
deployments_url: string;
|
|
925
|
+
created_at: string;
|
|
926
|
+
updated_at: string;
|
|
927
|
+
pushed_at: string;
|
|
928
|
+
git_url: string;
|
|
929
|
+
ssh_url: string;
|
|
930
|
+
clone_url: string;
|
|
931
|
+
svn_url: string;
|
|
932
|
+
homepage: string;
|
|
933
|
+
size: number;
|
|
934
|
+
stargazers_count: number;
|
|
935
|
+
watchers_count: number;
|
|
936
|
+
language: null;
|
|
937
|
+
has_issues: boolean;
|
|
938
|
+
has_projects: boolean;
|
|
939
|
+
has_downloads: boolean;
|
|
940
|
+
has_wiki: boolean;
|
|
941
|
+
has_pages: boolean;
|
|
942
|
+
has_discussions: boolean;
|
|
943
|
+
forks_count: number;
|
|
944
|
+
mirror_url: null;
|
|
945
|
+
archived: boolean;
|
|
946
|
+
disabled: boolean;
|
|
947
|
+
open_issues_count: number;
|
|
948
|
+
license: null;
|
|
949
|
+
allow_forking: boolean;
|
|
950
|
+
is_template: boolean;
|
|
951
|
+
web_commit_signoff_required: boolean;
|
|
952
|
+
topics: never[];
|
|
953
|
+
visibility: string;
|
|
954
|
+
forks: number;
|
|
955
|
+
open_issues: number;
|
|
956
|
+
watchers: number;
|
|
957
|
+
default_branch: string;
|
|
958
|
+
custom_properties: {};
|
|
959
|
+
};
|
|
960
|
+
organization: {
|
|
961
|
+
login: string;
|
|
962
|
+
id: number;
|
|
963
|
+
node_id: string;
|
|
964
|
+
url: string;
|
|
965
|
+
repos_url: string;
|
|
966
|
+
events_url: string;
|
|
967
|
+
hooks_url: string;
|
|
968
|
+
issues_url: string;
|
|
969
|
+
members_url: string;
|
|
970
|
+
public_members_url: string;
|
|
971
|
+
avatar_url: string;
|
|
972
|
+
description: string;
|
|
973
|
+
};
|
|
974
|
+
sender: {
|
|
975
|
+
login: string;
|
|
976
|
+
id: number;
|
|
977
|
+
node_id: string;
|
|
978
|
+
avatar_url: string;
|
|
979
|
+
gravatar_id: string;
|
|
980
|
+
url: string;
|
|
981
|
+
html_url: string;
|
|
982
|
+
followers_url: string;
|
|
983
|
+
following_url: string;
|
|
984
|
+
gists_url: string;
|
|
985
|
+
starred_url: string;
|
|
986
|
+
subscriptions_url: string;
|
|
987
|
+
organizations_url: string;
|
|
988
|
+
repos_url: string;
|
|
989
|
+
events_url: string;
|
|
990
|
+
received_events_url: string;
|
|
991
|
+
type: string;
|
|
992
|
+
user_view_type: string;
|
|
993
|
+
site_admin: boolean;
|
|
994
|
+
};
|
|
995
|
+
number?: undefined;
|
|
996
|
+
pull_request?: undefined;
|
|
997
|
+
starred_at?: undefined;
|
|
998
|
+
issue?: undefined;
|
|
999
|
+
after?: undefined;
|
|
1000
|
+
base_ref?: undefined;
|
|
1001
|
+
before?: undefined;
|
|
1002
|
+
commits?: undefined;
|
|
1003
|
+
compare?: undefined;
|
|
1004
|
+
created?: undefined;
|
|
1005
|
+
deleted?: undefined;
|
|
1006
|
+
enterprise?: undefined;
|
|
1007
|
+
forced?: undefined;
|
|
1008
|
+
head_commit?: undefined;
|
|
1009
|
+
installation?: undefined;
|
|
1010
|
+
pusher?: undefined;
|
|
1011
|
+
ref?: undefined;
|
|
1012
|
+
comment?: undefined;
|
|
1013
|
+
};
|
|
1014
|
+
} | {
|
|
1015
|
+
name: GithubEventType;
|
|
1016
|
+
displayName: string;
|
|
1017
|
+
description: string;
|
|
1018
|
+
sampleData: {
|
|
1019
|
+
action: string;
|
|
1020
|
+
comment: {
|
|
1021
|
+
id: number;
|
|
1022
|
+
node_id: string;
|
|
1023
|
+
html_url: string;
|
|
1024
|
+
parent_id: number;
|
|
1025
|
+
child_comment_count: number;
|
|
1026
|
+
repository_url: string;
|
|
1027
|
+
discussion_id: number;
|
|
1028
|
+
author_association: string;
|
|
1029
|
+
user: {
|
|
1030
|
+
login: string;
|
|
1031
|
+
id: number;
|
|
1032
|
+
node_id: string;
|
|
1033
|
+
avatar_url: string;
|
|
1034
|
+
gravatar_id: string;
|
|
1035
|
+
url: string;
|
|
1036
|
+
html_url: string;
|
|
1037
|
+
followers_url: string;
|
|
1038
|
+
following_url: string;
|
|
1039
|
+
gists_url: string;
|
|
1040
|
+
starred_url: string;
|
|
1041
|
+
subscriptions_url: string;
|
|
1042
|
+
organizations_url: string;
|
|
1043
|
+
repos_url: string;
|
|
1044
|
+
events_url: string;
|
|
1045
|
+
received_events_url: string;
|
|
1046
|
+
type: string;
|
|
1047
|
+
user_view_type: string;
|
|
1048
|
+
site_admin: boolean;
|
|
1049
|
+
};
|
|
1050
|
+
created_at: string;
|
|
1051
|
+
updated_at: string;
|
|
1052
|
+
body: string;
|
|
1053
|
+
reactions: {
|
|
1054
|
+
url: string;
|
|
1055
|
+
total_count: number;
|
|
1056
|
+
'+1': number;
|
|
1057
|
+
'-1': number;
|
|
1058
|
+
laugh: number;
|
|
1059
|
+
hooray: number;
|
|
1060
|
+
confused: number;
|
|
1061
|
+
heart: number;
|
|
1062
|
+
rocket: number;
|
|
1063
|
+
eyes: number;
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
1066
|
+
discussion: {
|
|
1067
|
+
repository_url: string;
|
|
1068
|
+
category: {
|
|
1069
|
+
id: number;
|
|
1070
|
+
node_id: string;
|
|
1071
|
+
repository_id: number;
|
|
1072
|
+
emoji: string;
|
|
1073
|
+
name: string;
|
|
1074
|
+
description: string;
|
|
1075
|
+
created_at: string;
|
|
1076
|
+
updated_at: string;
|
|
1077
|
+
slug: string;
|
|
1078
|
+
is_answerable: boolean;
|
|
1079
|
+
};
|
|
1080
|
+
answer_html_url: null;
|
|
1081
|
+
answer_chosen_at: null;
|
|
1082
|
+
answer_chosen_by: null;
|
|
1083
|
+
html_url: string;
|
|
1084
|
+
id: number;
|
|
1085
|
+
node_id: string;
|
|
1086
|
+
number: number;
|
|
1087
|
+
title: string;
|
|
1088
|
+
user: {
|
|
1089
|
+
login: string;
|
|
1090
|
+
id: number;
|
|
1091
|
+
node_id: string;
|
|
1092
|
+
avatar_url: string;
|
|
1093
|
+
gravatar_id: string;
|
|
1094
|
+
url: string;
|
|
1095
|
+
html_url: string;
|
|
1096
|
+
followers_url: string;
|
|
1097
|
+
following_url: string;
|
|
1098
|
+
gists_url: string;
|
|
1099
|
+
starred_url: string;
|
|
1100
|
+
subscriptions_url: string;
|
|
1101
|
+
organizations_url: string;
|
|
1102
|
+
repos_url: string;
|
|
1103
|
+
events_url: string;
|
|
1104
|
+
received_events_url: string;
|
|
1105
|
+
type: string;
|
|
1106
|
+
user_view_type: string;
|
|
1107
|
+
site_admin: boolean;
|
|
1108
|
+
};
|
|
1109
|
+
labels: {
|
|
1110
|
+
id: number;
|
|
1111
|
+
node_id: string;
|
|
1112
|
+
url: string;
|
|
1113
|
+
name: string;
|
|
1114
|
+
color: string;
|
|
1115
|
+
default: boolean;
|
|
1116
|
+
description: string;
|
|
1117
|
+
}[];
|
|
1118
|
+
state: string;
|
|
1119
|
+
state_reason: null;
|
|
1120
|
+
locked: boolean;
|
|
1121
|
+
comments: number;
|
|
1122
|
+
created_at: string;
|
|
1123
|
+
updated_at: string;
|
|
1124
|
+
author_association: string;
|
|
1125
|
+
active_lock_reason: null;
|
|
1126
|
+
body: string;
|
|
1127
|
+
reactions: {
|
|
1128
|
+
url: string;
|
|
1129
|
+
total_count: number;
|
|
1130
|
+
'+1': number;
|
|
1131
|
+
'-1': number;
|
|
1132
|
+
laugh: number;
|
|
1133
|
+
hooray: number;
|
|
1134
|
+
confused: number;
|
|
1135
|
+
heart: number;
|
|
1136
|
+
rocket: number;
|
|
1137
|
+
eyes: number;
|
|
1138
|
+
};
|
|
1139
|
+
timeline_url: string;
|
|
1140
|
+
};
|
|
1141
|
+
repository: {
|
|
1142
|
+
id: number;
|
|
1143
|
+
node_id: string;
|
|
1144
|
+
name: string;
|
|
1145
|
+
full_name: string;
|
|
1146
|
+
private: boolean;
|
|
1147
|
+
owner: {
|
|
1148
|
+
login: string;
|
|
1149
|
+
id: number;
|
|
1150
|
+
node_id: string;
|
|
1151
|
+
avatar_url: string;
|
|
1152
|
+
gravatar_id: string;
|
|
1153
|
+
url: string;
|
|
1154
|
+
html_url: string;
|
|
1155
|
+
followers_url: string;
|
|
1156
|
+
following_url: string;
|
|
1157
|
+
gists_url: string;
|
|
1158
|
+
starred_url: string;
|
|
1159
|
+
subscriptions_url: string;
|
|
1160
|
+
organizations_url: string;
|
|
1161
|
+
repos_url: string;
|
|
1162
|
+
events_url: string;
|
|
1163
|
+
received_events_url: string;
|
|
1164
|
+
type: string;
|
|
1165
|
+
user_view_type: string;
|
|
1166
|
+
site_admin: boolean;
|
|
1167
|
+
};
|
|
1168
|
+
html_url: string;
|
|
1169
|
+
description: string;
|
|
1170
|
+
fork: boolean;
|
|
1171
|
+
url: string;
|
|
1172
|
+
forks_url: string;
|
|
1173
|
+
keys_url: string;
|
|
1174
|
+
collaborators_url: string;
|
|
1175
|
+
teams_url: string;
|
|
1176
|
+
hooks_url: string;
|
|
1177
|
+
issue_events_url: string;
|
|
1178
|
+
events_url: string;
|
|
1179
|
+
assignees_url: string;
|
|
1180
|
+
branches_url: string;
|
|
1181
|
+
tags_url: string;
|
|
1182
|
+
blobs_url: string;
|
|
1183
|
+
git_tags_url: string;
|
|
1184
|
+
git_refs_url: string;
|
|
1185
|
+
trees_url: string;
|
|
1186
|
+
statuses_url: string;
|
|
1187
|
+
languages_url: string;
|
|
1188
|
+
stargazers_url: string;
|
|
1189
|
+
contributors_url: string;
|
|
1190
|
+
subscribers_url: string;
|
|
1191
|
+
subscription_url: string;
|
|
1192
|
+
commits_url: string;
|
|
1193
|
+
git_commits_url: string;
|
|
1194
|
+
comments_url: string;
|
|
1195
|
+
issue_comment_url: string;
|
|
1196
|
+
contents_url: string;
|
|
1197
|
+
compare_url: string;
|
|
1198
|
+
merges_url: string;
|
|
1199
|
+
archive_url: string;
|
|
1200
|
+
downloads_url: string;
|
|
1201
|
+
issues_url: string;
|
|
1202
|
+
pulls_url: string;
|
|
1203
|
+
milestones_url: string;
|
|
1204
|
+
notifications_url: string;
|
|
1205
|
+
labels_url: string;
|
|
1206
|
+
releases_url: string;
|
|
1207
|
+
deployments_url: string;
|
|
1208
|
+
created_at: string;
|
|
1209
|
+
updated_at: string;
|
|
1210
|
+
pushed_at: string;
|
|
1211
|
+
git_url: string;
|
|
1212
|
+
ssh_url: string;
|
|
1213
|
+
clone_url: string;
|
|
1214
|
+
svn_url: string;
|
|
1215
|
+
homepage: string;
|
|
1216
|
+
size: number;
|
|
1217
|
+
stargazers_count: number;
|
|
1218
|
+
watchers_count: number;
|
|
1219
|
+
language: null;
|
|
1220
|
+
has_issues: boolean;
|
|
1221
|
+
has_projects: boolean;
|
|
1222
|
+
has_downloads: boolean;
|
|
1223
|
+
has_wiki: boolean;
|
|
1224
|
+
has_pages: boolean;
|
|
1225
|
+
has_discussions: boolean;
|
|
1226
|
+
forks_count: number;
|
|
1227
|
+
mirror_url: null;
|
|
1228
|
+
archived: boolean;
|
|
1229
|
+
disabled: boolean;
|
|
1230
|
+
open_issues_count: number;
|
|
1231
|
+
license: null;
|
|
1232
|
+
allow_forking: boolean;
|
|
1233
|
+
is_template: boolean;
|
|
1234
|
+
web_commit_signoff_required: boolean;
|
|
1235
|
+
topics: never[];
|
|
1236
|
+
visibility: string;
|
|
1237
|
+
forks: number;
|
|
1238
|
+
open_issues: number;
|
|
1239
|
+
watchers: number;
|
|
1240
|
+
default_branch: string;
|
|
1241
|
+
custom_properties: {};
|
|
1242
|
+
};
|
|
1243
|
+
organization: {
|
|
1244
|
+
login: string;
|
|
1245
|
+
id: number;
|
|
1246
|
+
node_id: string;
|
|
1247
|
+
url: string;
|
|
1248
|
+
repos_url: string;
|
|
1249
|
+
events_url: string;
|
|
1250
|
+
hooks_url: string;
|
|
1251
|
+
issues_url: string;
|
|
1252
|
+
members_url: string;
|
|
1253
|
+
public_members_url: string;
|
|
1254
|
+
avatar_url: string;
|
|
1255
|
+
description: string;
|
|
1256
|
+
};
|
|
1257
|
+
sender: {
|
|
1258
|
+
login: string;
|
|
1259
|
+
id: number;
|
|
1260
|
+
node_id: string;
|
|
1261
|
+
avatar_url: string;
|
|
1262
|
+
gravatar_id: string;
|
|
1263
|
+
url: string;
|
|
1264
|
+
html_url: string;
|
|
1265
|
+
followers_url: string;
|
|
1266
|
+
following_url: string;
|
|
1267
|
+
gists_url: string;
|
|
1268
|
+
starred_url: string;
|
|
1269
|
+
subscriptions_url: string;
|
|
1270
|
+
organizations_url: string;
|
|
1271
|
+
repos_url: string;
|
|
1272
|
+
events_url: string;
|
|
1273
|
+
received_events_url: string;
|
|
1274
|
+
type: string;
|
|
1275
|
+
user_view_type: string;
|
|
1276
|
+
site_admin: boolean;
|
|
1277
|
+
};
|
|
1278
|
+
number?: undefined;
|
|
1279
|
+
pull_request?: undefined;
|
|
1280
|
+
starred_at?: undefined;
|
|
1281
|
+
issue?: undefined;
|
|
1282
|
+
after?: undefined;
|
|
1283
|
+
base_ref?: undefined;
|
|
1284
|
+
before?: undefined;
|
|
1285
|
+
commits?: undefined;
|
|
1286
|
+
compare?: undefined;
|
|
1287
|
+
created?: undefined;
|
|
1288
|
+
deleted?: undefined;
|
|
1289
|
+
enterprise?: undefined;
|
|
1290
|
+
forced?: undefined;
|
|
1291
|
+
head_commit?: undefined;
|
|
1292
|
+
installation?: undefined;
|
|
1293
|
+
pusher?: undefined;
|
|
1294
|
+
ref?: undefined;
|
|
749
1295
|
};
|
|
750
1296
|
})[];
|
|
751
1297
|
export declare const githubTriggers: Trigger[];
|