-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtypes.ts
More file actions
1156 lines (1153 loc) · 56.4 KB
/
types.ts
File metadata and controls
1156 lines (1153 loc) · 56.4 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
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
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
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
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
411
412
413
414
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
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// THIS FILE IS GENERATED - DO NOT EDIT DIRECTLY
// make edits in scripts/generate-types.ts
import type { webhooks as OpenAPIWebhooks } from "@octokit/openapi-webhooks-types";
type WebhookEventDefinition<TEventName extends keyof OpenAPIWebhooks> =
OpenAPIWebhooks[TEventName]["post"]["requestBody"]["content"]["application/json"];
export type BranchProtectionConfigurationDisabledEvent =
WebhookEventDefinition<"branch-protection-configuration-disabled">;
export type BranchProtectionConfigurationEnabledEvent =
WebhookEventDefinition<"branch-protection-configuration-enabled">;
export type BranchProtectionConfigurationEvent =
| WebhookEventDefinition<"branch-protection-configuration-disabled">
| WebhookEventDefinition<"branch-protection-configuration-enabled">;
export type BranchProtectionRuleCreatedEvent =
WebhookEventDefinition<"branch-protection-rule-created">;
export type BranchProtectionRuleDeletedEvent =
WebhookEventDefinition<"branch-protection-rule-deleted">;
export type BranchProtectionRuleEditedEvent =
WebhookEventDefinition<"branch-protection-rule-edited">;
export type BranchProtectionRuleEvent =
| WebhookEventDefinition<"branch-protection-rule-created">
| WebhookEventDefinition<"branch-protection-rule-deleted">
| WebhookEventDefinition<"branch-protection-rule-edited">;
export type CheckRunCompletedEvent =
WebhookEventDefinition<"check-run-completed">;
export type CheckRunCreatedEvent = WebhookEventDefinition<"check-run-created">;
export type CheckRunRequestedActionEvent =
WebhookEventDefinition<"check-run-requested-action">;
export type CheckRunRerequestedEvent =
WebhookEventDefinition<"check-run-rerequested">;
export type CheckRunEvent =
| WebhookEventDefinition<"check-run-completed">
| WebhookEventDefinition<"check-run-created">
| WebhookEventDefinition<"check-run-requested-action">
| WebhookEventDefinition<"check-run-rerequested">;
export type CheckSuiteCompletedEvent =
WebhookEventDefinition<"check-suite-completed">;
export type CheckSuiteRequestedEvent =
WebhookEventDefinition<"check-suite-requested">;
export type CheckSuiteRerequestedEvent =
WebhookEventDefinition<"check-suite-rerequested">;
export type CheckSuiteEvent =
| WebhookEventDefinition<"check-suite-completed">
| WebhookEventDefinition<"check-suite-requested">
| WebhookEventDefinition<"check-suite-rerequested">;
export type CodeScanningAlertAppearedInBranchEvent =
WebhookEventDefinition<"code-scanning-alert-appeared-in-branch">;
export type CodeScanningAlertClosedByUserEvent =
WebhookEventDefinition<"code-scanning-alert-closed-by-user">;
export type CodeScanningAlertCreatedEvent =
WebhookEventDefinition<"code-scanning-alert-created">;
export type CodeScanningAlertFixedEvent =
WebhookEventDefinition<"code-scanning-alert-fixed">;
export type CodeScanningAlertReopenedEvent =
WebhookEventDefinition<"code-scanning-alert-reopened">;
export type CodeScanningAlertReopenedByUserEvent =
WebhookEventDefinition<"code-scanning-alert-reopened-by-user">;
export type CodeScanningAlertUpdatedAssignmentEvent =
WebhookEventDefinition<"code-scanning-alert-updated-assignment">;
export type CodeScanningAlertEvent =
| WebhookEventDefinition<"code-scanning-alert-appeared-in-branch">
| WebhookEventDefinition<"code-scanning-alert-closed-by-user">
| WebhookEventDefinition<"code-scanning-alert-created">
| WebhookEventDefinition<"code-scanning-alert-fixed">
| WebhookEventDefinition<"code-scanning-alert-reopened">
| WebhookEventDefinition<"code-scanning-alert-reopened-by-user">
| WebhookEventDefinition<"code-scanning-alert-updated-assignment">;
export type CommitCommentEvent =
WebhookEventDefinition<"commit-comment-created">;
export type CreateEvent = WebhookEventDefinition<"create">;
export type CustomPropertyCreatedEvent =
WebhookEventDefinition<"custom-property-created">;
export type CustomPropertyDeletedEvent =
WebhookEventDefinition<"custom-property-deleted">;
export type CustomPropertyPromotedToEnterpriseEvent =
WebhookEventDefinition<"custom-property-promoted-to-enterprise">;
export type CustomPropertyUpdatedEvent =
WebhookEventDefinition<"custom-property-updated">;
export type CustomPropertyEvent =
| WebhookEventDefinition<"custom-property-created">
| WebhookEventDefinition<"custom-property-deleted">
| WebhookEventDefinition<"custom-property-promoted-to-enterprise">
| WebhookEventDefinition<"custom-property-updated">;
export type CustomPropertyValuesEvent =
WebhookEventDefinition<"custom-property-values-updated">;
export type DeleteEvent = WebhookEventDefinition<"delete">;
export type DependabotAlertAssigneesChangedEvent =
WebhookEventDefinition<"dependabot-alert-assignees-changed">;
export type DependabotAlertAutoDismissedEvent =
WebhookEventDefinition<"dependabot-alert-auto-dismissed">;
export type DependabotAlertAutoReopenedEvent =
WebhookEventDefinition<"dependabot-alert-auto-reopened">;
export type DependabotAlertCreatedEvent =
WebhookEventDefinition<"dependabot-alert-created">;
export type DependabotAlertDismissedEvent =
WebhookEventDefinition<"dependabot-alert-dismissed">;
export type DependabotAlertFixedEvent =
WebhookEventDefinition<"dependabot-alert-fixed">;
export type DependabotAlertReintroducedEvent =
WebhookEventDefinition<"dependabot-alert-reintroduced">;
export type DependabotAlertReopenedEvent =
WebhookEventDefinition<"dependabot-alert-reopened">;
export type DependabotAlertEvent =
| WebhookEventDefinition<"dependabot-alert-assignees-changed">
| WebhookEventDefinition<"dependabot-alert-auto-dismissed">
| WebhookEventDefinition<"dependabot-alert-auto-reopened">
| WebhookEventDefinition<"dependabot-alert-created">
| WebhookEventDefinition<"dependabot-alert-dismissed">
| WebhookEventDefinition<"dependabot-alert-fixed">
| WebhookEventDefinition<"dependabot-alert-reintroduced">
| WebhookEventDefinition<"dependabot-alert-reopened">;
export type DeployKeyCreatedEvent =
WebhookEventDefinition<"deploy-key-created">;
export type DeployKeyDeletedEvent =
WebhookEventDefinition<"deploy-key-deleted">;
export type DeployKeyEvent =
| WebhookEventDefinition<"deploy-key-created">
| WebhookEventDefinition<"deploy-key-deleted">;
export type DeploymentEvent = WebhookEventDefinition<"deployment-created">;
export type DeploymentProtectionRuleEvent =
WebhookEventDefinition<"deployment-protection-rule-requested">;
export type DeploymentReviewApprovedEvent =
WebhookEventDefinition<"deployment-review-approved">;
export type DeploymentReviewRejectedEvent =
WebhookEventDefinition<"deployment-review-rejected">;
export type DeploymentReviewRequestedEvent =
WebhookEventDefinition<"deployment-review-requested">;
export type DeploymentReviewEvent =
| WebhookEventDefinition<"deployment-review-approved">
| WebhookEventDefinition<"deployment-review-rejected">
| WebhookEventDefinition<"deployment-review-requested">;
export type DeploymentStatusEvent =
WebhookEventDefinition<"deployment-status-created">;
export type DiscussionAnsweredEvent =
WebhookEventDefinition<"discussion-answered">;
export type DiscussionCategoryChangedEvent =
WebhookEventDefinition<"discussion-category-changed">;
export type DiscussionClosedEvent = WebhookEventDefinition<"discussion-closed">;
export type DiscussionCreatedEvent =
WebhookEventDefinition<"discussion-created">;
export type DiscussionDeletedEvent =
WebhookEventDefinition<"discussion-deleted">;
export type DiscussionEditedEvent = WebhookEventDefinition<"discussion-edited">;
export type DiscussionLabeledEvent =
WebhookEventDefinition<"discussion-labeled">;
export type DiscussionLockedEvent = WebhookEventDefinition<"discussion-locked">;
export type DiscussionPinnedEvent = WebhookEventDefinition<"discussion-pinned">;
export type DiscussionReopenedEvent =
WebhookEventDefinition<"discussion-reopened">;
export type DiscussionTransferredEvent =
WebhookEventDefinition<"discussion-transferred">;
export type DiscussionUnansweredEvent =
WebhookEventDefinition<"discussion-unanswered">;
export type DiscussionUnlabeledEvent =
WebhookEventDefinition<"discussion-unlabeled">;
export type DiscussionUnlockedEvent =
WebhookEventDefinition<"discussion-unlocked">;
export type DiscussionUnpinnedEvent =
WebhookEventDefinition<"discussion-unpinned">;
export type DiscussionEvent =
| WebhookEventDefinition<"discussion-answered">
| WebhookEventDefinition<"discussion-category-changed">
| WebhookEventDefinition<"discussion-closed">
| WebhookEventDefinition<"discussion-created">
| WebhookEventDefinition<"discussion-deleted">
| WebhookEventDefinition<"discussion-edited">
| WebhookEventDefinition<"discussion-labeled">
| WebhookEventDefinition<"discussion-locked">
| WebhookEventDefinition<"discussion-pinned">
| WebhookEventDefinition<"discussion-reopened">
| WebhookEventDefinition<"discussion-transferred">
| WebhookEventDefinition<"discussion-unanswered">
| WebhookEventDefinition<"discussion-unlabeled">
| WebhookEventDefinition<"discussion-unlocked">
| WebhookEventDefinition<"discussion-unpinned">;
export type DiscussionCommentCreatedEvent =
WebhookEventDefinition<"discussion-comment-created">;
export type DiscussionCommentDeletedEvent =
WebhookEventDefinition<"discussion-comment-deleted">;
export type DiscussionCommentEditedEvent =
WebhookEventDefinition<"discussion-comment-edited">;
export type DiscussionCommentEvent =
| WebhookEventDefinition<"discussion-comment-created">
| WebhookEventDefinition<"discussion-comment-deleted">
| WebhookEventDefinition<"discussion-comment-edited">;
export type ForkEvent = WebhookEventDefinition<"fork">;
export type GithubAppAuthorizationEvent =
WebhookEventDefinition<"github-app-authorization-revoked">;
export type GollumEvent = WebhookEventDefinition<"gollum">;
export type InstallationCreatedEvent =
WebhookEventDefinition<"installation-created">;
export type InstallationDeletedEvent =
WebhookEventDefinition<"installation-deleted">;
export type InstallationNewPermissionsAcceptedEvent =
WebhookEventDefinition<"installation-new-permissions-accepted">;
export type InstallationSuspendEvent =
WebhookEventDefinition<"installation-suspend">;
export type InstallationUnsuspendEvent =
WebhookEventDefinition<"installation-unsuspend">;
export type InstallationEvent =
| WebhookEventDefinition<"installation-created">
| WebhookEventDefinition<"installation-deleted">
| WebhookEventDefinition<"installation-new-permissions-accepted">
| WebhookEventDefinition<"installation-suspend">
| WebhookEventDefinition<"installation-unsuspend">;
export type InstallationRepositoriesAddedEvent =
WebhookEventDefinition<"installation-repositories-added">;
export type InstallationRepositoriesRemovedEvent =
WebhookEventDefinition<"installation-repositories-removed">;
export type InstallationRepositoriesEvent =
| WebhookEventDefinition<"installation-repositories-added">
| WebhookEventDefinition<"installation-repositories-removed">;
export type InstallationTargetEvent =
WebhookEventDefinition<"installation-target-renamed">;
export type IssueCommentCreatedEvent =
WebhookEventDefinition<"issue-comment-created">;
export type IssueCommentDeletedEvent =
WebhookEventDefinition<"issue-comment-deleted">;
export type IssueCommentEditedEvent =
WebhookEventDefinition<"issue-comment-edited">;
export type IssueCommentPinnedEvent =
WebhookEventDefinition<"issue-comment-pinned">;
export type IssueCommentUnpinnedEvent =
WebhookEventDefinition<"issue-comment-unpinned">;
export type IssueCommentEvent =
| WebhookEventDefinition<"issue-comment-created">
| WebhookEventDefinition<"issue-comment-deleted">
| WebhookEventDefinition<"issue-comment-edited">
| WebhookEventDefinition<"issue-comment-pinned">
| WebhookEventDefinition<"issue-comment-unpinned">;
export type IssueDependenciesBlockedByAddedEvent =
WebhookEventDefinition<"issue-dependencies-blocked-by-added">;
export type IssueDependenciesBlockedByRemovedEvent =
WebhookEventDefinition<"issue-dependencies-blocked-by-removed">;
export type IssueDependenciesBlockingAddedEvent =
WebhookEventDefinition<"issue-dependencies-blocking-added">;
export type IssueDependenciesBlockingRemovedEvent =
WebhookEventDefinition<"issue-dependencies-blocking-removed">;
export type IssueDependenciesEvent =
| WebhookEventDefinition<"issue-dependencies-blocked-by-added">
| WebhookEventDefinition<"issue-dependencies-blocked-by-removed">
| WebhookEventDefinition<"issue-dependencies-blocking-added">
| WebhookEventDefinition<"issue-dependencies-blocking-removed">;
export type IssuesAssignedEvent = WebhookEventDefinition<"issues-assigned">;
export type IssuesClosedEvent = WebhookEventDefinition<"issues-closed">;
export type IssuesDeletedEvent = WebhookEventDefinition<"issues-deleted">;
export type IssuesDemilestonedEvent =
WebhookEventDefinition<"issues-demilestoned">;
export type IssuesEditedEvent = WebhookEventDefinition<"issues-edited">;
export type IssuesLabeledEvent = WebhookEventDefinition<"issues-labeled">;
export type IssuesLockedEvent = WebhookEventDefinition<"issues-locked">;
export type IssuesMilestonedEvent = WebhookEventDefinition<"issues-milestoned">;
export type IssuesOpenedEvent = WebhookEventDefinition<"issues-opened">;
export type IssuesPinnedEvent = WebhookEventDefinition<"issues-pinned">;
export type IssuesReopenedEvent = WebhookEventDefinition<"issues-reopened">;
export type IssuesTransferredEvent =
WebhookEventDefinition<"issues-transferred">;
export type IssuesTypedEvent = WebhookEventDefinition<"issues-typed">;
export type IssuesUnassignedEvent = WebhookEventDefinition<"issues-unassigned">;
export type IssuesUnlabeledEvent = WebhookEventDefinition<"issues-unlabeled">;
export type IssuesUnlockedEvent = WebhookEventDefinition<"issues-unlocked">;
export type IssuesUnpinnedEvent = WebhookEventDefinition<"issues-unpinned">;
export type IssuesUntypedEvent = WebhookEventDefinition<"issues-untyped">;
export type IssuesEvent =
| WebhookEventDefinition<"issues-assigned">
| WebhookEventDefinition<"issues-closed">
| WebhookEventDefinition<"issues-deleted">
| WebhookEventDefinition<"issues-demilestoned">
| WebhookEventDefinition<"issues-edited">
| WebhookEventDefinition<"issues-labeled">
| WebhookEventDefinition<"issues-locked">
| WebhookEventDefinition<"issues-milestoned">
| WebhookEventDefinition<"issues-opened">
| WebhookEventDefinition<"issues-pinned">
| WebhookEventDefinition<"issues-reopened">
| WebhookEventDefinition<"issues-transferred">
| WebhookEventDefinition<"issues-typed">
| WebhookEventDefinition<"issues-unassigned">
| WebhookEventDefinition<"issues-unlabeled">
| WebhookEventDefinition<"issues-unlocked">
| WebhookEventDefinition<"issues-unpinned">
| WebhookEventDefinition<"issues-untyped">;
export type LabelCreatedEvent = WebhookEventDefinition<"label-created">;
export type LabelDeletedEvent = WebhookEventDefinition<"label-deleted">;
export type LabelEditedEvent = WebhookEventDefinition<"label-edited">;
export type LabelEvent =
| WebhookEventDefinition<"label-created">
| WebhookEventDefinition<"label-deleted">
| WebhookEventDefinition<"label-edited">;
export type MarketplacePurchaseCancelledEvent =
WebhookEventDefinition<"marketplace-purchase-cancelled">;
export type MarketplacePurchaseChangedEvent =
WebhookEventDefinition<"marketplace-purchase-changed">;
export type MarketplacePurchasePendingChangeEvent =
WebhookEventDefinition<"marketplace-purchase-pending-change">;
export type MarketplacePurchasePendingChangeCancelledEvent =
WebhookEventDefinition<"marketplace-purchase-pending-change-cancelled">;
export type MarketplacePurchasePurchasedEvent =
WebhookEventDefinition<"marketplace-purchase-purchased">;
export type MarketplacePurchaseEvent =
| WebhookEventDefinition<"marketplace-purchase-cancelled">
| WebhookEventDefinition<"marketplace-purchase-changed">
| WebhookEventDefinition<"marketplace-purchase-pending-change">
| WebhookEventDefinition<"marketplace-purchase-pending-change-cancelled">
| WebhookEventDefinition<"marketplace-purchase-purchased">;
export type MemberAddedEvent = WebhookEventDefinition<"member-added">;
export type MemberEditedEvent = WebhookEventDefinition<"member-edited">;
export type MemberRemovedEvent = WebhookEventDefinition<"member-removed">;
export type MemberEvent =
| WebhookEventDefinition<"member-added">
| WebhookEventDefinition<"member-edited">
| WebhookEventDefinition<"member-removed">;
export type MembershipAddedEvent = WebhookEventDefinition<"membership-added">;
export type MembershipRemovedEvent =
WebhookEventDefinition<"membership-removed">;
export type MembershipEvent =
| WebhookEventDefinition<"membership-added">
| WebhookEventDefinition<"membership-removed">;
export type MergeGroupChecksRequestedEvent =
WebhookEventDefinition<"merge-group-checks-requested">;
export type MergeGroupDestroyedEvent =
WebhookEventDefinition<"merge-group-destroyed">;
export type MergeGroupEvent =
| WebhookEventDefinition<"merge-group-checks-requested">
| WebhookEventDefinition<"merge-group-destroyed">;
export type MetaEvent = WebhookEventDefinition<"meta-deleted">;
export type MilestoneClosedEvent = WebhookEventDefinition<"milestone-closed">;
export type MilestoneCreatedEvent = WebhookEventDefinition<"milestone-created">;
export type MilestoneDeletedEvent = WebhookEventDefinition<"milestone-deleted">;
export type MilestoneEditedEvent = WebhookEventDefinition<"milestone-edited">;
export type MilestoneOpenedEvent = WebhookEventDefinition<"milestone-opened">;
export type MilestoneEvent =
| WebhookEventDefinition<"milestone-closed">
| WebhookEventDefinition<"milestone-created">
| WebhookEventDefinition<"milestone-deleted">
| WebhookEventDefinition<"milestone-edited">
| WebhookEventDefinition<"milestone-opened">;
export type OrgBlockBlockedEvent = WebhookEventDefinition<"org-block-blocked">;
export type OrgBlockUnblockedEvent =
WebhookEventDefinition<"org-block-unblocked">;
export type OrgBlockEvent =
| WebhookEventDefinition<"org-block-blocked">
| WebhookEventDefinition<"org-block-unblocked">;
export type OrganizationDeletedEvent =
WebhookEventDefinition<"organization-deleted">;
export type OrganizationMemberAddedEvent =
WebhookEventDefinition<"organization-member-added">;
export type OrganizationMemberInvitedEvent =
WebhookEventDefinition<"organization-member-invited">;
export type OrganizationMemberRemovedEvent =
WebhookEventDefinition<"organization-member-removed">;
export type OrganizationRenamedEvent =
WebhookEventDefinition<"organization-renamed">;
export type OrganizationEvent =
| WebhookEventDefinition<"organization-deleted">
| WebhookEventDefinition<"organization-member-added">
| WebhookEventDefinition<"organization-member-invited">
| WebhookEventDefinition<"organization-member-removed">
| WebhookEventDefinition<"organization-renamed">;
export type PackagePublishedEvent = WebhookEventDefinition<"package-published">;
export type PackageUpdatedEvent = WebhookEventDefinition<"package-updated">;
export type PackageEvent =
| WebhookEventDefinition<"package-published">
| WebhookEventDefinition<"package-updated">;
export type PageBuildEvent = WebhookEventDefinition<"page-build">;
export type PersonalAccessTokenRequestApprovedEvent =
WebhookEventDefinition<"personal-access-token-request-approved">;
export type PersonalAccessTokenRequestCancelledEvent =
WebhookEventDefinition<"personal-access-token-request-cancelled">;
export type PersonalAccessTokenRequestCreatedEvent =
WebhookEventDefinition<"personal-access-token-request-created">;
export type PersonalAccessTokenRequestDeniedEvent =
WebhookEventDefinition<"personal-access-token-request-denied">;
export type PersonalAccessTokenRequestEvent =
| WebhookEventDefinition<"personal-access-token-request-approved">
| WebhookEventDefinition<"personal-access-token-request-cancelled">
| WebhookEventDefinition<"personal-access-token-request-created">
| WebhookEventDefinition<"personal-access-token-request-denied">;
export type PingEvent = WebhookEventDefinition<"ping">;
export type ProjectClosedEvent = WebhookEventDefinition<"project-closed">;
export type ProjectCreatedEvent = WebhookEventDefinition<"project-created">;
export type ProjectDeletedEvent = WebhookEventDefinition<"project-deleted">;
export type ProjectEditedEvent = WebhookEventDefinition<"project-edited">;
export type ProjectReopenedEvent = WebhookEventDefinition<"project-reopened">;
export type ProjectEvent =
| WebhookEventDefinition<"project-closed">
| WebhookEventDefinition<"project-created">
| WebhookEventDefinition<"project-deleted">
| WebhookEventDefinition<"project-edited">
| WebhookEventDefinition<"project-reopened">;
export type ProjectCardConvertedEvent =
WebhookEventDefinition<"project-card-converted">;
export type ProjectCardCreatedEvent =
WebhookEventDefinition<"project-card-created">;
export type ProjectCardDeletedEvent =
WebhookEventDefinition<"project-card-deleted">;
export type ProjectCardEditedEvent =
WebhookEventDefinition<"project-card-edited">;
export type ProjectCardMovedEvent =
WebhookEventDefinition<"project-card-moved">;
export type ProjectCardEvent =
| WebhookEventDefinition<"project-card-converted">
| WebhookEventDefinition<"project-card-created">
| WebhookEventDefinition<"project-card-deleted">
| WebhookEventDefinition<"project-card-edited">
| WebhookEventDefinition<"project-card-moved">;
export type ProjectColumnCreatedEvent =
WebhookEventDefinition<"project-column-created">;
export type ProjectColumnDeletedEvent =
WebhookEventDefinition<"project-column-deleted">;
export type ProjectColumnEditedEvent =
WebhookEventDefinition<"project-column-edited">;
export type ProjectColumnMovedEvent =
WebhookEventDefinition<"project-column-moved">;
export type ProjectColumnEvent =
| WebhookEventDefinition<"project-column-created">
| WebhookEventDefinition<"project-column-deleted">
| WebhookEventDefinition<"project-column-edited">
| WebhookEventDefinition<"project-column-moved">;
export type ProjectsV2ClosedEvent =
WebhookEventDefinition<"projects-v2-closed">;
export type ProjectsV2CreatedEvent =
WebhookEventDefinition<"projects-v2-created">;
export type ProjectsV2DeletedEvent =
WebhookEventDefinition<"projects-v2-deleted">;
export type ProjectsV2EditedEvent =
WebhookEventDefinition<"projects-v2-edited">;
export type ProjectsV2ReopenedEvent =
WebhookEventDefinition<"projects-v2-reopened">;
export type ProjectsV2Event =
| WebhookEventDefinition<"projects-v2-closed">
| WebhookEventDefinition<"projects-v2-created">
| WebhookEventDefinition<"projects-v2-deleted">
| WebhookEventDefinition<"projects-v2-edited">
| WebhookEventDefinition<"projects-v2-reopened">;
export type ProjectsV2ItemArchivedEvent =
WebhookEventDefinition<"projects-v2-item-archived">;
export type ProjectsV2ItemConvertedEvent =
WebhookEventDefinition<"projects-v2-item-converted">;
export type ProjectsV2ItemCreatedEvent =
WebhookEventDefinition<"projects-v2-item-created">;
export type ProjectsV2ItemDeletedEvent =
WebhookEventDefinition<"projects-v2-item-deleted">;
export type ProjectsV2ItemEditedEvent =
WebhookEventDefinition<"projects-v2-item-edited">;
export type ProjectsV2ItemReorderedEvent =
WebhookEventDefinition<"projects-v2-item-reordered">;
export type ProjectsV2ItemRestoredEvent =
WebhookEventDefinition<"projects-v2-item-restored">;
export type ProjectsV2ItemEvent =
| WebhookEventDefinition<"projects-v2-item-archived">
| WebhookEventDefinition<"projects-v2-item-converted">
| WebhookEventDefinition<"projects-v2-item-created">
| WebhookEventDefinition<"projects-v2-item-deleted">
| WebhookEventDefinition<"projects-v2-item-edited">
| WebhookEventDefinition<"projects-v2-item-reordered">
| WebhookEventDefinition<"projects-v2-item-restored">;
export type ProjectsV2StatusUpdateCreatedEvent =
WebhookEventDefinition<"projects-v2-status-update-created">;
export type ProjectsV2StatusUpdateDeletedEvent =
WebhookEventDefinition<"projects-v2-status-update-deleted">;
export type ProjectsV2StatusUpdateEditedEvent =
WebhookEventDefinition<"projects-v2-status-update-edited">;
export type ProjectsV2StatusUpdateEvent =
| WebhookEventDefinition<"projects-v2-status-update-created">
| WebhookEventDefinition<"projects-v2-status-update-deleted">
| WebhookEventDefinition<"projects-v2-status-update-edited">;
export type PublicEvent = WebhookEventDefinition<"public">;
export type PullRequestAssignedEvent =
WebhookEventDefinition<"pull-request-assigned">;
export type PullRequestAutoMergeDisabledEvent =
WebhookEventDefinition<"pull-request-auto-merge-disabled">;
export type PullRequestAutoMergeEnabledEvent =
WebhookEventDefinition<"pull-request-auto-merge-enabled">;
export type PullRequestClosedEvent =
WebhookEventDefinition<"pull-request-closed">;
export type PullRequestConvertedToDraftEvent =
WebhookEventDefinition<"pull-request-converted-to-draft">;
export type PullRequestDemilestonedEvent =
WebhookEventDefinition<"pull-request-demilestoned">;
export type PullRequestDequeuedEvent =
WebhookEventDefinition<"pull-request-dequeued">;
export type PullRequestEditedEvent =
WebhookEventDefinition<"pull-request-edited">;
export type PullRequestEnqueuedEvent =
WebhookEventDefinition<"pull-request-enqueued">;
export type PullRequestLabeledEvent =
WebhookEventDefinition<"pull-request-labeled">;
export type PullRequestLockedEvent =
WebhookEventDefinition<"pull-request-locked">;
export type PullRequestMilestonedEvent =
WebhookEventDefinition<"pull-request-milestoned">;
export type PullRequestOpenedEvent =
WebhookEventDefinition<"pull-request-opened">;
export type PullRequestReadyForReviewEvent =
WebhookEventDefinition<"pull-request-ready-for-review">;
export type PullRequestReopenedEvent =
WebhookEventDefinition<"pull-request-reopened">;
export type PullRequestReviewRequestRemovedEvent =
WebhookEventDefinition<"pull-request-review-request-removed">;
export type PullRequestReviewRequestedEvent =
WebhookEventDefinition<"pull-request-review-requested">;
export type PullRequestSynchronizeEvent =
WebhookEventDefinition<"pull-request-synchronize">;
export type PullRequestUnassignedEvent =
WebhookEventDefinition<"pull-request-unassigned">;
export type PullRequestUnlabeledEvent =
WebhookEventDefinition<"pull-request-unlabeled">;
export type PullRequestUnlockedEvent =
WebhookEventDefinition<"pull-request-unlocked">;
export type PullRequestEvent =
| WebhookEventDefinition<"pull-request-assigned">
| WebhookEventDefinition<"pull-request-auto-merge-disabled">
| WebhookEventDefinition<"pull-request-auto-merge-enabled">
| WebhookEventDefinition<"pull-request-closed">
| WebhookEventDefinition<"pull-request-converted-to-draft">
| WebhookEventDefinition<"pull-request-demilestoned">
| WebhookEventDefinition<"pull-request-dequeued">
| WebhookEventDefinition<"pull-request-edited">
| WebhookEventDefinition<"pull-request-enqueued">
| WebhookEventDefinition<"pull-request-labeled">
| WebhookEventDefinition<"pull-request-locked">
| WebhookEventDefinition<"pull-request-milestoned">
| WebhookEventDefinition<"pull-request-opened">
| WebhookEventDefinition<"pull-request-ready-for-review">
| WebhookEventDefinition<"pull-request-reopened">
| WebhookEventDefinition<"pull-request-review-request-removed">
| WebhookEventDefinition<"pull-request-review-requested">
| WebhookEventDefinition<"pull-request-synchronize">
| WebhookEventDefinition<"pull-request-unassigned">
| WebhookEventDefinition<"pull-request-unlabeled">
| WebhookEventDefinition<"pull-request-unlocked">;
export type PullRequestReviewDismissedEvent =
WebhookEventDefinition<"pull-request-review-dismissed">;
export type PullRequestReviewEditedEvent =
WebhookEventDefinition<"pull-request-review-edited">;
export type PullRequestReviewSubmittedEvent =
WebhookEventDefinition<"pull-request-review-submitted">;
export type PullRequestReviewEvent =
| WebhookEventDefinition<"pull-request-review-dismissed">
| WebhookEventDefinition<"pull-request-review-edited">
| WebhookEventDefinition<"pull-request-review-submitted">;
export type PullRequestReviewCommentCreatedEvent =
WebhookEventDefinition<"pull-request-review-comment-created">;
export type PullRequestReviewCommentDeletedEvent =
WebhookEventDefinition<"pull-request-review-comment-deleted">;
export type PullRequestReviewCommentEditedEvent =
WebhookEventDefinition<"pull-request-review-comment-edited">;
export type PullRequestReviewCommentEvent =
| WebhookEventDefinition<"pull-request-review-comment-created">
| WebhookEventDefinition<"pull-request-review-comment-deleted">
| WebhookEventDefinition<"pull-request-review-comment-edited">;
export type PullRequestReviewThreadResolvedEvent =
WebhookEventDefinition<"pull-request-review-thread-resolved">;
export type PullRequestReviewThreadUnresolvedEvent =
WebhookEventDefinition<"pull-request-review-thread-unresolved">;
export type PullRequestReviewThreadEvent =
| WebhookEventDefinition<"pull-request-review-thread-resolved">
| WebhookEventDefinition<"pull-request-review-thread-unresolved">;
export type PushEvent = WebhookEventDefinition<"push">;
export type RegistryPackagePublishedEvent =
WebhookEventDefinition<"registry-package-published">;
export type RegistryPackageUpdatedEvent =
WebhookEventDefinition<"registry-package-updated">;
export type RegistryPackageEvent =
| WebhookEventDefinition<"registry-package-published">
| WebhookEventDefinition<"registry-package-updated">;
export type ReleaseCreatedEvent = WebhookEventDefinition<"release-created">;
export type ReleaseDeletedEvent = WebhookEventDefinition<"release-deleted">;
export type ReleaseEditedEvent = WebhookEventDefinition<"release-edited">;
export type ReleasePrereleasedEvent =
WebhookEventDefinition<"release-prereleased">;
export type ReleasePublishedEvent = WebhookEventDefinition<"release-published">;
export type ReleaseReleasedEvent = WebhookEventDefinition<"release-released">;
export type ReleaseUnpublishedEvent =
WebhookEventDefinition<"release-unpublished">;
export type ReleaseEvent =
| WebhookEventDefinition<"release-created">
| WebhookEventDefinition<"release-deleted">
| WebhookEventDefinition<"release-edited">
| WebhookEventDefinition<"release-prereleased">
| WebhookEventDefinition<"release-published">
| WebhookEventDefinition<"release-released">
| WebhookEventDefinition<"release-unpublished">;
export type RepositoryArchivedEvent =
WebhookEventDefinition<"repository-archived">;
export type RepositoryCreatedEvent =
WebhookEventDefinition<"repository-created">;
export type RepositoryDeletedEvent =
WebhookEventDefinition<"repository-deleted">;
export type RepositoryEditedEvent = WebhookEventDefinition<"repository-edited">;
export type RepositoryPrivatizedEvent =
WebhookEventDefinition<"repository-privatized">;
export type RepositoryPublicizedEvent =
WebhookEventDefinition<"repository-publicized">;
export type RepositoryRenamedEvent =
WebhookEventDefinition<"repository-renamed">;
export type RepositoryTransferredEvent =
WebhookEventDefinition<"repository-transferred">;
export type RepositoryUnarchivedEvent =
WebhookEventDefinition<"repository-unarchived">;
export type RepositoryEvent =
| WebhookEventDefinition<"repository-archived">
| WebhookEventDefinition<"repository-created">
| WebhookEventDefinition<"repository-deleted">
| WebhookEventDefinition<"repository-edited">
| WebhookEventDefinition<"repository-privatized">
| WebhookEventDefinition<"repository-publicized">
| WebhookEventDefinition<"repository-renamed">
| WebhookEventDefinition<"repository-transferred">
| WebhookEventDefinition<"repository-unarchived">;
export type RepositoryAdvisoryPublishedEvent =
WebhookEventDefinition<"repository-advisory-published">;
export type RepositoryAdvisoryReportedEvent =
WebhookEventDefinition<"repository-advisory-reported">;
export type RepositoryAdvisoryEvent =
| WebhookEventDefinition<"repository-advisory-published">
| WebhookEventDefinition<"repository-advisory-reported">;
export type RepositoryDispatchEvent =
WebhookEventDefinition<"repository-dispatch-sample.collected">;
export type RepositoryImportEvent = WebhookEventDefinition<"repository-import">;
export type RepositoryRulesetCreatedEvent =
WebhookEventDefinition<"repository-ruleset-created">;
export type RepositoryRulesetDeletedEvent =
WebhookEventDefinition<"repository-ruleset-deleted">;
export type RepositoryRulesetEditedEvent =
WebhookEventDefinition<"repository-ruleset-edited">;
export type RepositoryRulesetEvent =
| WebhookEventDefinition<"repository-ruleset-created">
| WebhookEventDefinition<"repository-ruleset-deleted">
| WebhookEventDefinition<"repository-ruleset-edited">;
export type RepositoryVulnerabilityAlertCreateEvent =
WebhookEventDefinition<"repository-vulnerability-alert-create">;
export type RepositoryVulnerabilityAlertDismissEvent =
WebhookEventDefinition<"repository-vulnerability-alert-dismiss">;
export type RepositoryVulnerabilityAlertReopenEvent =
WebhookEventDefinition<"repository-vulnerability-alert-reopen">;
export type RepositoryVulnerabilityAlertResolveEvent =
WebhookEventDefinition<"repository-vulnerability-alert-resolve">;
export type RepositoryVulnerabilityAlertEvent =
| WebhookEventDefinition<"repository-vulnerability-alert-create">
| WebhookEventDefinition<"repository-vulnerability-alert-dismiss">
| WebhookEventDefinition<"repository-vulnerability-alert-reopen">
| WebhookEventDefinition<"repository-vulnerability-alert-resolve">;
export type SecretScanningAlertAssignedEvent =
WebhookEventDefinition<"secret-scanning-alert-assigned">;
export type SecretScanningAlertCreatedEvent =
WebhookEventDefinition<"secret-scanning-alert-created">;
export type SecretScanningAlertPubliclyLeakedEvent =
WebhookEventDefinition<"secret-scanning-alert-publicly-leaked">;
export type SecretScanningAlertReopenedEvent =
WebhookEventDefinition<"secret-scanning-alert-reopened">;
export type SecretScanningAlertResolvedEvent =
WebhookEventDefinition<"secret-scanning-alert-resolved">;
export type SecretScanningAlertUnassignedEvent =
WebhookEventDefinition<"secret-scanning-alert-unassigned">;
export type SecretScanningAlertValidatedEvent =
WebhookEventDefinition<"secret-scanning-alert-validated">;
export type SecretScanningAlertEvent =
| WebhookEventDefinition<"secret-scanning-alert-assigned">
| WebhookEventDefinition<"secret-scanning-alert-created">
| WebhookEventDefinition<"secret-scanning-alert-publicly-leaked">
| WebhookEventDefinition<"secret-scanning-alert-reopened">
| WebhookEventDefinition<"secret-scanning-alert-resolved">
| WebhookEventDefinition<"secret-scanning-alert-unassigned">
| WebhookEventDefinition<"secret-scanning-alert-validated">;
export type SecretScanningAlertLocationEvent =
WebhookEventDefinition<"secret-scanning-alert-location-created">;
export type SecretScanningScanEvent =
WebhookEventDefinition<"secret-scanning-scan-completed">;
export type SecurityAdvisoryPublishedEvent =
WebhookEventDefinition<"security-advisory-published">;
export type SecurityAdvisoryUpdatedEvent =
WebhookEventDefinition<"security-advisory-updated">;
export type SecurityAdvisoryWithdrawnEvent =
WebhookEventDefinition<"security-advisory-withdrawn">;
export type SecurityAdvisoryEvent =
| WebhookEventDefinition<"security-advisory-published">
| WebhookEventDefinition<"security-advisory-updated">
| WebhookEventDefinition<"security-advisory-withdrawn">;
export type SecurityAndAnalysisEvent =
WebhookEventDefinition<"security-and-analysis">;
export type SponsorshipCancelledEvent =
WebhookEventDefinition<"sponsorship-cancelled">;
export type SponsorshipCreatedEvent =
WebhookEventDefinition<"sponsorship-created">;
export type SponsorshipEditedEvent =
WebhookEventDefinition<"sponsorship-edited">;
export type SponsorshipPendingCancellationEvent =
WebhookEventDefinition<"sponsorship-pending-cancellation">;
export type SponsorshipPendingTierChangeEvent =
WebhookEventDefinition<"sponsorship-pending-tier-change">;
export type SponsorshipTierChangedEvent =
WebhookEventDefinition<"sponsorship-tier-changed">;
export type SponsorshipEvent =
| WebhookEventDefinition<"sponsorship-cancelled">
| WebhookEventDefinition<"sponsorship-created">
| WebhookEventDefinition<"sponsorship-edited">
| WebhookEventDefinition<"sponsorship-pending-cancellation">
| WebhookEventDefinition<"sponsorship-pending-tier-change">
| WebhookEventDefinition<"sponsorship-tier-changed">;
export type StarCreatedEvent = WebhookEventDefinition<"star-created">;
export type StarDeletedEvent = WebhookEventDefinition<"star-deleted">;
export type StarEvent =
| WebhookEventDefinition<"star-created">
| WebhookEventDefinition<"star-deleted">;
export type StatusEvent = WebhookEventDefinition<"status">;
export type SubIssuesParentIssueAddedEvent =
WebhookEventDefinition<"sub-issues-parent-issue-added">;
export type SubIssuesParentIssueRemovedEvent =
WebhookEventDefinition<"sub-issues-parent-issue-removed">;
export type SubIssuesSubIssueAddedEvent =
WebhookEventDefinition<"sub-issues-sub-issue-added">;
export type SubIssuesSubIssueRemovedEvent =
WebhookEventDefinition<"sub-issues-sub-issue-removed">;
export type SubIssuesEvent =
| WebhookEventDefinition<"sub-issues-parent-issue-added">
| WebhookEventDefinition<"sub-issues-parent-issue-removed">
| WebhookEventDefinition<"sub-issues-sub-issue-added">
| WebhookEventDefinition<"sub-issues-sub-issue-removed">;
export type TeamAddedToRepositoryEvent =
WebhookEventDefinition<"team-added-to-repository">;
export type TeamCreatedEvent = WebhookEventDefinition<"team-created">;
export type TeamDeletedEvent = WebhookEventDefinition<"team-deleted">;
export type TeamEditedEvent = WebhookEventDefinition<"team-edited">;
export type TeamRemovedFromRepositoryEvent =
WebhookEventDefinition<"team-removed-from-repository">;
export type TeamEvent =
| WebhookEventDefinition<"team-added-to-repository">
| WebhookEventDefinition<"team-created">
| WebhookEventDefinition<"team-deleted">
| WebhookEventDefinition<"team-edited">
| WebhookEventDefinition<"team-removed-from-repository">;
export type TeamAddEvent = WebhookEventDefinition<"team-add">;
export type WatchEvent = WebhookEventDefinition<"watch-started">;
export type WorkflowDispatchEvent = WebhookEventDefinition<"workflow-dispatch">;
export type WorkflowJobCompletedEvent =
WebhookEventDefinition<"workflow-job-completed">;
export type WorkflowJobInProgressEvent =
WebhookEventDefinition<"workflow-job-in-progress">;
export type WorkflowJobQueuedEvent =
WebhookEventDefinition<"workflow-job-queued">;
export type WorkflowJobWaitingEvent =
WebhookEventDefinition<"workflow-job-waiting">;
export type WorkflowJobEvent =
| WebhookEventDefinition<"workflow-job-completed">
| WebhookEventDefinition<"workflow-job-in-progress">
| WebhookEventDefinition<"workflow-job-queued">
| WebhookEventDefinition<"workflow-job-waiting">;
export type WorkflowRunCompletedEvent =
WebhookEventDefinition<"workflow-run-completed">;
export type WorkflowRunInProgressEvent =
WebhookEventDefinition<"workflow-run-in-progress">;
export type WorkflowRunRequestedEvent =
WebhookEventDefinition<"workflow-run-requested">;
export type WorkflowRunEvent =
| WebhookEventDefinition<"workflow-run-completed">
| WebhookEventDefinition<"workflow-run-in-progress">
| WebhookEventDefinition<"workflow-run-requested">;
export type EventPayloadMap = {
branch_protection_configuration:
| WebhookEventDefinition<"branch-protection-configuration-disabled">
| WebhookEventDefinition<"branch-protection-configuration-enabled">;
branch_protection_rule:
| WebhookEventDefinition<"branch-protection-rule-created">
| WebhookEventDefinition<"branch-protection-rule-deleted">
| WebhookEventDefinition<"branch-protection-rule-edited">;
check_run:
| WebhookEventDefinition<"check-run-completed">
| WebhookEventDefinition<"check-run-created">
| WebhookEventDefinition<"check-run-requested-action">
| WebhookEventDefinition<"check-run-rerequested">;
check_suite:
| WebhookEventDefinition<"check-suite-completed">
| WebhookEventDefinition<"check-suite-requested">
| WebhookEventDefinition<"check-suite-rerequested">;
code_scanning_alert:
| WebhookEventDefinition<"code-scanning-alert-appeared-in-branch">
| WebhookEventDefinition<"code-scanning-alert-closed-by-user">
| WebhookEventDefinition<"code-scanning-alert-created">
| WebhookEventDefinition<"code-scanning-alert-fixed">
| WebhookEventDefinition<"code-scanning-alert-reopened">
| WebhookEventDefinition<"code-scanning-alert-reopened-by-user">
| WebhookEventDefinition<"code-scanning-alert-updated-assignment">;
commit_comment: WebhookEventDefinition<"commit-comment-created">;
create: WebhookEventDefinition<"create">;
custom_property:
| WebhookEventDefinition<"custom-property-created">
| WebhookEventDefinition<"custom-property-deleted">
| WebhookEventDefinition<"custom-property-promoted-to-enterprise">
| WebhookEventDefinition<"custom-property-updated">;
custom_property_values: WebhookEventDefinition<"custom-property-values-updated">;
delete: WebhookEventDefinition<"delete">;
dependabot_alert:
| WebhookEventDefinition<"dependabot-alert-assignees-changed">
| WebhookEventDefinition<"dependabot-alert-auto-dismissed">
| WebhookEventDefinition<"dependabot-alert-auto-reopened">
| WebhookEventDefinition<"dependabot-alert-created">
| WebhookEventDefinition<"dependabot-alert-dismissed">
| WebhookEventDefinition<"dependabot-alert-fixed">
| WebhookEventDefinition<"dependabot-alert-reintroduced">
| WebhookEventDefinition<"dependabot-alert-reopened">;
deploy_key:
| WebhookEventDefinition<"deploy-key-created">
| WebhookEventDefinition<"deploy-key-deleted">;
deployment: WebhookEventDefinition<"deployment-created">;
deployment_protection_rule: WebhookEventDefinition<"deployment-protection-rule-requested">;
deployment_review:
| WebhookEventDefinition<"deployment-review-approved">
| WebhookEventDefinition<"deployment-review-rejected">
| WebhookEventDefinition<"deployment-review-requested">;
deployment_status: WebhookEventDefinition<"deployment-status-created">;
discussion:
| WebhookEventDefinition<"discussion-answered">
| WebhookEventDefinition<"discussion-category-changed">
| WebhookEventDefinition<"discussion-closed">
| WebhookEventDefinition<"discussion-created">
| WebhookEventDefinition<"discussion-deleted">
| WebhookEventDefinition<"discussion-edited">
| WebhookEventDefinition<"discussion-labeled">
| WebhookEventDefinition<"discussion-locked">
| WebhookEventDefinition<"discussion-pinned">
| WebhookEventDefinition<"discussion-reopened">
| WebhookEventDefinition<"discussion-transferred">
| WebhookEventDefinition<"discussion-unanswered">
| WebhookEventDefinition<"discussion-unlabeled">
| WebhookEventDefinition<"discussion-unlocked">
| WebhookEventDefinition<"discussion-unpinned">;
discussion_comment:
| WebhookEventDefinition<"discussion-comment-created">
| WebhookEventDefinition<"discussion-comment-deleted">
| WebhookEventDefinition<"discussion-comment-edited">;
fork: WebhookEventDefinition<"fork">;
github_app_authorization: WebhookEventDefinition<"github-app-authorization-revoked">;
gollum: WebhookEventDefinition<"gollum">;
installation:
| WebhookEventDefinition<"installation-created">
| WebhookEventDefinition<"installation-deleted">
| WebhookEventDefinition<"installation-new-permissions-accepted">
| WebhookEventDefinition<"installation-suspend">
| WebhookEventDefinition<"installation-unsuspend">;
installation_repositories:
| WebhookEventDefinition<"installation-repositories-added">
| WebhookEventDefinition<"installation-repositories-removed">;
installation_target: WebhookEventDefinition<"installation-target-renamed">;
issue_comment:
| WebhookEventDefinition<"issue-comment-created">
| WebhookEventDefinition<"issue-comment-deleted">
| WebhookEventDefinition<"issue-comment-edited">
| WebhookEventDefinition<"issue-comment-pinned">
| WebhookEventDefinition<"issue-comment-unpinned">;
issue_dependencies:
| WebhookEventDefinition<"issue-dependencies-blocked-by-added">
| WebhookEventDefinition<"issue-dependencies-blocked-by-removed">
| WebhookEventDefinition<"issue-dependencies-blocking-added">
| WebhookEventDefinition<"issue-dependencies-blocking-removed">;
issues:
| WebhookEventDefinition<"issues-assigned">
| WebhookEventDefinition<"issues-closed">
| WebhookEventDefinition<"issues-deleted">
| WebhookEventDefinition<"issues-demilestoned">
| WebhookEventDefinition<"issues-edited">
| WebhookEventDefinition<"issues-labeled">
| WebhookEventDefinition<"issues-locked">
| WebhookEventDefinition<"issues-milestoned">
| WebhookEventDefinition<"issues-opened">
| WebhookEventDefinition<"issues-pinned">
| WebhookEventDefinition<"issues-reopened">
| WebhookEventDefinition<"issues-transferred">
| WebhookEventDefinition<"issues-typed">
| WebhookEventDefinition<"issues-unassigned">
| WebhookEventDefinition<"issues-unlabeled">
| WebhookEventDefinition<"issues-unlocked">
| WebhookEventDefinition<"issues-unpinned">
| WebhookEventDefinition<"issues-untyped">;
label:
| WebhookEventDefinition<"label-created">
| WebhookEventDefinition<"label-deleted">
| WebhookEventDefinition<"label-edited">;
marketplace_purchase:
| WebhookEventDefinition<"marketplace-purchase-cancelled">
| WebhookEventDefinition<"marketplace-purchase-changed">
| WebhookEventDefinition<"marketplace-purchase-pending-change">
| WebhookEventDefinition<"marketplace-purchase-pending-change-cancelled">
| WebhookEventDefinition<"marketplace-purchase-purchased">;
member:
| WebhookEventDefinition<"member-added">
| WebhookEventDefinition<"member-edited">
| WebhookEventDefinition<"member-removed">;
membership:
| WebhookEventDefinition<"membership-added">
| WebhookEventDefinition<"membership-removed">;
merge_group:
| WebhookEventDefinition<"merge-group-checks-requested">
| WebhookEventDefinition<"merge-group-destroyed">;
meta: WebhookEventDefinition<"meta-deleted">;
milestone:
| WebhookEventDefinition<"milestone-closed">
| WebhookEventDefinition<"milestone-created">
| WebhookEventDefinition<"milestone-deleted">
| WebhookEventDefinition<"milestone-edited">
| WebhookEventDefinition<"milestone-opened">;
org_block:
| WebhookEventDefinition<"org-block-blocked">
| WebhookEventDefinition<"org-block-unblocked">;
organization:
| WebhookEventDefinition<"organization-deleted">
| WebhookEventDefinition<"organization-member-added">
| WebhookEventDefinition<"organization-member-invited">
| WebhookEventDefinition<"organization-member-removed">
| WebhookEventDefinition<"organization-renamed">;
package:
| WebhookEventDefinition<"package-published">
| WebhookEventDefinition<"package-updated">;
page_build: WebhookEventDefinition<"page-build">;
personal_access_token_request:
| WebhookEventDefinition<"personal-access-token-request-approved">
| WebhookEventDefinition<"personal-access-token-request-cancelled">
| WebhookEventDefinition<"personal-access-token-request-created">
| WebhookEventDefinition<"personal-access-token-request-denied">;
ping: WebhookEventDefinition<"ping">;
project_card:
| WebhookEventDefinition<"project-card-converted">
| WebhookEventDefinition<"project-card-created">
| WebhookEventDefinition<"project-card-deleted">
| WebhookEventDefinition<"project-card-edited">
| WebhookEventDefinition<"project-card-moved">;
project:
| WebhookEventDefinition<"project-closed">
| WebhookEventDefinition<"project-created">
| WebhookEventDefinition<"project-deleted">
| WebhookEventDefinition<"project-edited">
| WebhookEventDefinition<"project-reopened">;
project_column:
| WebhookEventDefinition<"project-column-created">
| WebhookEventDefinition<"project-column-deleted">
| WebhookEventDefinition<"project-column-edited">
| WebhookEventDefinition<"project-column-moved">;
projects_v2:
| WebhookEventDefinition<"projects-v2-closed">
| WebhookEventDefinition<"projects-v2-created">
| WebhookEventDefinition<"projects-v2-deleted">
| WebhookEventDefinition<"projects-v2-edited">
| WebhookEventDefinition<"projects-v2-reopened">;
projects_v2_item:
| WebhookEventDefinition<"projects-v2-item-archived">
| WebhookEventDefinition<"projects-v2-item-converted">
| WebhookEventDefinition<"projects-v2-item-created">
| WebhookEventDefinition<"projects-v2-item-deleted">
| WebhookEventDefinition<"projects-v2-item-edited">
| WebhookEventDefinition<"projects-v2-item-reordered">
| WebhookEventDefinition<"projects-v2-item-restored">;
projects_v2_status_update:
| WebhookEventDefinition<"projects-v2-status-update-created">
| WebhookEventDefinition<"projects-v2-status-update-deleted">
| WebhookEventDefinition<"projects-v2-status-update-edited">;
public: WebhookEventDefinition<"public">;
pull_request:
| WebhookEventDefinition<"pull-request-assigned">
| WebhookEventDefinition<"pull-request-auto-merge-disabled">
| WebhookEventDefinition<"pull-request-auto-merge-enabled">
| WebhookEventDefinition<"pull-request-closed">
| WebhookEventDefinition<"pull-request-converted-to-draft">
| WebhookEventDefinition<"pull-request-demilestoned">
| WebhookEventDefinition<"pull-request-dequeued">
| WebhookEventDefinition<"pull-request-edited">
| WebhookEventDefinition<"pull-request-enqueued">
| WebhookEventDefinition<"pull-request-labeled">
| WebhookEventDefinition<"pull-request-locked">
| WebhookEventDefinition<"pull-request-milestoned">
| WebhookEventDefinition<"pull-request-opened">
| WebhookEventDefinition<"pull-request-ready-for-review">
| WebhookEventDefinition<"pull-request-reopened">
| WebhookEventDefinition<"pull-request-review-request-removed">
| WebhookEventDefinition<"pull-request-review-requested">
| WebhookEventDefinition<"pull-request-synchronize">
| WebhookEventDefinition<"pull-request-unassigned">
| WebhookEventDefinition<"pull-request-unlabeled">
| WebhookEventDefinition<"pull-request-unlocked">;
pull_request_review_comment:
| WebhookEventDefinition<"pull-request-review-comment-created">
| WebhookEventDefinition<"pull-request-review-comment-deleted">
| WebhookEventDefinition<"pull-request-review-comment-edited">;
pull_request_review:
| WebhookEventDefinition<"pull-request-review-dismissed">
| WebhookEventDefinition<"pull-request-review-edited">
| WebhookEventDefinition<"pull-request-review-submitted">;
pull_request_review_thread:
| WebhookEventDefinition<"pull-request-review-thread-resolved">
| WebhookEventDefinition<"pull-request-review-thread-unresolved">;
push: WebhookEventDefinition<"push">;
registry_package:
| WebhookEventDefinition<"registry-package-published">
| WebhookEventDefinition<"registry-package-updated">;
release:
| WebhookEventDefinition<"release-created">
| WebhookEventDefinition<"release-deleted">
| WebhookEventDefinition<"release-edited">