|
12 | 12 | *
|
13 | 13 | * @see GitHub#parseEventPayload(Reader, Class) GitHub#parseEventPayload(Reader, Class)
|
14 | 14 | * @see GHEventInfo#getPayload(Class) GHEventInfo#getPayload(Class)
|
| 15 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads">Webhook events |
| 16 | + * and payloads</a> |
15 | 17 | */
|
16 | 18 | @SuppressWarnings("UnusedDeclaration")
|
17 | 19 | public abstract class GHEventPayload {
|
@@ -59,7 +61,9 @@ void wrapUp(GitHub root) {
|
59 | 61 | /**
|
60 | 62 | * A check run event has been created, rerequested, completed, or has a requested_action.
|
61 | 63 | *
|
62 |
| - * @see <a href="https://developer.github.com/v3/activity/events/types/#checkrunevent">authoritative source</a> |
| 64 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#check_run"> |
| 65 | + * check_run event</a> |
| 66 | + * @see <a href="https://docs.github.com/en/rest/reference/checks#check-runs">Check Runs</a> |
63 | 67 | */
|
64 | 68 | @SuppressFBWarnings(
|
65 | 69 | value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD" },
|
@@ -155,7 +159,9 @@ void wrapUp(GitHub root) {
|
155 | 159 | /**
|
156 | 160 | * A check suite event has been requested, rerequested or completed.
|
157 | 161 | *
|
158 |
| - * @see <a href="https://developer.github.com/v3/activity/events/types/#checkrunevent">authoritative source</a> |
| 162 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#check_suite"> |
| 163 | + * check_suite event</a> |
| 164 | + * @see <a href="https://docs.github.com/en/rest/reference/checks#check-suites">Check Suites</a> |
159 | 165 | */
|
160 | 166 | @SuppressFBWarnings(
|
161 | 167 | value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD" },
|
@@ -211,7 +217,10 @@ void wrapUp(GitHub root) {
|
211 | 217 | /**
|
212 | 218 | * An installation has been installed, uninstalled, or its permissions have been changed.
|
213 | 219 | *
|
214 |
| - * @see <a href="https://developer.github.com/v3/activity/events/types/#installationevent">authoritative source</a> |
| 220 | + * @see <a href= |
| 221 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#installation"> |
| 222 | + * installation event</a> |
| 223 | + * @see <a href="https://docs.github.com/en/rest/reference/apps#installations">GitHub App Installation</a> |
215 | 224 | */
|
216 | 225 | @SuppressFBWarnings(value = { "UWF_UNWRITTEN_FIELD" }, justification = "JSON API")
|
217 | 226 | public static class Installation extends GHEventPayload {
|
@@ -271,8 +280,10 @@ void wrapUp(GitHub root) {
|
271 | 280 | /**
|
272 | 281 | * A repository has been added or removed from an installation.
|
273 | 282 | *
|
274 |
| - * @see <a href="https://developer.github.com/v3/activity/events/types/#installationrepositoriesevent">authoritative |
275 |
| - * source</a> |
| 283 | + * @see <a href= |
| 284 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#installation_repositories"> |
| 285 | + * installation_repositories event</a> |
| 286 | + * @see <a href="https://docs.github.com/en/rest/reference/apps#installations">GitHub App installation</a> |
276 | 287 | */
|
277 | 288 | @SuppressFBWarnings(value = { "UWF_UNWRITTEN_FIELD" }, justification = "JSON API")
|
278 | 289 | public static class InstallationRepositories extends GHEventPayload {
|
@@ -358,7 +369,10 @@ void wrapUp(GitHub root) {
|
358 | 369 | /**
|
359 | 370 | * A pull request status has changed.
|
360 | 371 | *
|
361 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#pullrequestevent">authoritative source</a> |
| 372 | + * @see <a href= |
| 373 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#pull_request"> |
| 374 | + * pull_request event</a> |
| 375 | + * @see <a href="https://docs.github.com/en/rest/reference/pulls">Pull Requests</a> |
362 | 376 | */
|
363 | 377 | @SuppressFBWarnings(
|
364 | 378 | value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD" },
|
@@ -424,8 +438,10 @@ void wrapUp(GitHub root) {
|
424 | 438 | /**
|
425 | 439 | * A review was added to a pull request
|
426 | 440 | *
|
427 |
| - * @see <a href="https://developer.github.com/v3/activity/events/types/#pullrequestreviewevent">authoritative |
428 |
| - * source</a> |
| 441 | + * @see <a href= |
| 442 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#pull_request_review"> |
| 443 | + * pull_request_review event</a> |
| 444 | + * @see <a href="https://docs.github.com/en/rest/reference/pulls#reviews">Pull Request Reviews</a> |
429 | 445 | */
|
430 | 446 | public static class PullRequestReview extends GHEventPayload {
|
431 | 447 | private String action;
|
@@ -490,8 +506,10 @@ void wrapUp(GitHub root) {
|
490 | 506 | /**
|
491 | 507 | * A review comment was added to a pull request
|
492 | 508 | *
|
493 |
| - * @see <a href="https://developer.github.com/v3/activity/events/types/#pullrequestreviewcommentevent">authoritative |
494 |
| - * source</a> |
| 509 | + * @see <a href= |
| 510 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#pull_request_review_comment"> |
| 511 | + * pull_request_review_comment event</a> |
| 512 | + * @see <a href="https://docs.github.com/en/rest/reference/pulls#review-comments">Pull Request Review Comments</a> |
495 | 513 | */
|
496 | 514 | public static class PullRequestReviewComment extends GHEventPayload {
|
497 | 515 | private String action;
|
@@ -557,7 +575,9 @@ void wrapUp(GitHub root) {
|
557 | 575 | * A Issue has been assigned, unassigned, labeled, unlabeled, opened, edited, milestoned, demilestoned, closed, or
|
558 | 576 | * reopened.
|
559 | 577 | *
|
560 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#issueevent">authoritative source</a> |
| 578 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#issues"> |
| 579 | + * issues events</a> |
| 580 | + * @see <a href="https://docs.github.com/en/rest/reference/issues#comments">Issues Comments</a> |
561 | 581 | */
|
562 | 582 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
563 | 583 | justification = "Constructed by JSON deserialization")
|
@@ -629,7 +649,10 @@ void wrapUp(GitHub root) {
|
629 | 649 | /**
|
630 | 650 | * A comment was added to an issue
|
631 | 651 | *
|
632 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#issuecommentevent">authoritative source</a> |
| 652 | + * @see <a href= |
| 653 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#issue_comment"> |
| 654 | + * issue_comment event</a> |
| 655 | + * @see <a href="https://docs.github.com/en/rest/reference/issues#comments">Issue Comments</a> |
633 | 656 | */
|
634 | 657 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
635 | 658 | justification = "Constructed by JSON deserialization")
|
@@ -722,7 +745,10 @@ void wrapUp(GitHub root) {
|
722 | 745 | /**
|
723 | 746 | * A comment was added to a commit
|
724 | 747 | *
|
725 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#commitcommentevent">authoritative source</a> |
| 748 | + * @see <a href= |
| 749 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#commit_comment"> |
| 750 | + * commit comment</a> |
| 751 | + * @see <a href="https://docs.github.com/en/rest/reference/repos#comments">Comments</a> |
726 | 752 | */
|
727 | 753 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
728 | 754 | justification = "Constructed by JSON deserialization")
|
@@ -792,7 +818,9 @@ void wrapUp(GitHub root) {
|
792 | 818 | /**
|
793 | 819 | * A repository, branch, or tag was created
|
794 | 820 | *
|
795 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#createevent">authoritative source</a> |
| 821 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#create"> |
| 822 | + * create event</a> |
| 823 | + * @see <a href="https://docs.github.com/en/rest/reference/git">Git data</a> |
796 | 824 | */
|
797 | 825 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
798 | 826 | justification = "Constructed by JSON deserialization")
|
@@ -874,7 +902,9 @@ void wrapUp(GitHub root) {
|
874 | 902 | /**
|
875 | 903 | * A branch, or tag was deleted
|
876 | 904 | *
|
877 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#deleteevent">authoritative source</a> |
| 905 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#delete"> |
| 906 | + * delete event</a> |
| 907 | + * @see <a href="https://docs.github.com/en/rest/reference/git">Git data</a> |
878 | 908 | */
|
879 | 909 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
880 | 910 | justification = "Constructed by JSON deserialization")
|
@@ -934,7 +964,9 @@ void wrapUp(GitHub root) {
|
934 | 964 | /**
|
935 | 965 | * A deployment
|
936 | 966 | *
|
937 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#deploymentevent">authoritative source</a> |
| 967 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#deployment"> |
| 968 | + * deployment event</a> |
| 969 | + * @see <a href="https://docs.github.com/en/rest/reference/repos#deployments">Deployments</a> |
938 | 970 | */
|
939 | 971 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
940 | 972 | justification = "Constructed by JSON deserialization")
|
@@ -991,10 +1023,12 @@ void wrapUp(GitHub root) {
|
991 | 1023 | }
|
992 | 1024 |
|
993 | 1025 | /**
|
994 |
| - * A deployment |
| 1026 | + * A deployment status |
995 | 1027 | *
|
996 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#deploymentstatusevent">authoritative |
997 |
| - * source</a> |
| 1028 | + * @see <a href= |
| 1029 | + * "https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status"> |
| 1030 | + * deployment_status event</a> |
| 1031 | + * @see <a href="https://docs.github.com/en/rest/reference/repos#deployments">Deployments</a> |
998 | 1032 | */
|
999 | 1033 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
1000 | 1034 | justification = "Constructed by JSON deserialization")
|
@@ -1074,7 +1108,9 @@ void wrapUp(GitHub root) {
|
1074 | 1108 | /**
|
1075 | 1109 | * A user forked a repository
|
1076 | 1110 | *
|
1077 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#forkevent">authoritative source</a> |
| 1111 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#fork"> fork |
| 1112 | + * event</a> |
| 1113 | + * @see <a href="https://docs.github.com/en/rest/reference/repos#forks">Forks</a> |
1078 | 1114 | */
|
1079 | 1115 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
1080 | 1116 | justification = "Constructed by JSON deserialization")
|
@@ -1132,6 +1168,9 @@ void wrapUp(GitHub root) {
|
1132 | 1168 |
|
1133 | 1169 | /**
|
1134 | 1170 | * A ping.
|
| 1171 | + * |
| 1172 | + * <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#ping"> ping |
| 1173 | + * event</a> |
1135 | 1174 | */
|
1136 | 1175 | public static class Ping extends GHEventPayload {
|
1137 | 1176 | private GHRepository repository;
|
@@ -1190,7 +1229,8 @@ void wrapUp(GitHub root) {
|
1190 | 1229 | /**
|
1191 | 1230 | * A repository was made public.
|
1192 | 1231 | *
|
1193 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#publicevent">authoritative source</a> |
| 1232 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#public"> |
| 1233 | + * public event</a> |
1194 | 1234 | */
|
1195 | 1235 | public static class Public extends GHEventPayload {
|
1196 | 1236 | private GHRepository repository;
|
@@ -1226,7 +1266,8 @@ void wrapUp(GitHub root) {
|
1226 | 1266 | /**
|
1227 | 1267 | * A commit was pushed.
|
1228 | 1268 | *
|
1229 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#pushevent">authoritative source</a> |
| 1269 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#push"> push |
| 1270 | + * event</a> |
1230 | 1271 | */
|
1231 | 1272 | @SuppressFBWarnings(
|
1232 | 1273 | value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD", "UUF_UNUSED_FIELD" },
|
@@ -1499,7 +1540,9 @@ public List<String> getModified() {
|
1499 | 1540 | /**
|
1500 | 1541 | * A release was added to the repo
|
1501 | 1542 | *
|
1502 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#releaseevent">authoritative source</a> |
| 1543 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#release"> |
| 1544 | + * release event</a> |
| 1545 | + * @see <a href="https://docs.github.com/en/rest/reference/repos#releases">Releases</a> |
1503 | 1546 | */
|
1504 | 1547 | @SuppressFBWarnings(value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD" },
|
1505 | 1548 | justification = "Constructed by JSON deserialization")
|
@@ -1568,7 +1611,9 @@ void wrapUp(GitHub root) {
|
1568 | 1611 | /**
|
1569 | 1612 | * A repository was created, deleted, made public, or made private.
|
1570 | 1613 | *
|
1571 |
| - * @see <a href="http://developer.github.com/v3/activity/events/types/#repositoryevent">authoritative source</a> |
| 1614 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#repository"> |
| 1615 | + * repository event</a> |
| 1616 | + * @see <a href="https://docs.github.com/en/rest/reference/repos">Repositories</a> |
1572 | 1617 | */
|
1573 | 1618 | @SuppressFBWarnings(
|
1574 | 1619 | value = { "UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", "NP_UNWRITTEN_FIELD", "UWF_UNWRITTEN_FIELD" },
|
@@ -1638,7 +1683,9 @@ void wrapUp(GitHub root) {
|
1638 | 1683 | /**
|
1639 | 1684 | * A git commit status was changed.
|
1640 | 1685 | *
|
1641 |
| - * @see <a href="https://developer.github.com/v3/activity/events/types/#statusevent">authoritative source</a> |
| 1686 | + * @see <a href="https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#status"> |
| 1687 | + * status event</a> |
| 1688 | + * @see <a href="https://docs.github.com/en/rest/reference/repos#statuses">Repository Statuses</a> |
1642 | 1689 | */
|
1643 | 1690 | @SuppressFBWarnings(value = { "UWF_UNWRITTEN_FIELD" }, justification = "Constructed by JSON deserialization")
|
1644 | 1691 | public static class Status extends GHEventPayload {
|
|
0 commit comments