You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/v3/activity/events/types.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ Key | Type | Description
39
39
40
40
Represents a created repository, branch, or tag.
41
41
42
-
Note: webhooks will not receive this event for created repositories.
42
+
Note: webhooks will not receive this event for created repositories. Additionally, webhooks will not receive this event for tags if more than three tags are pushed at once.
43
43
44
44
### Events API payload
45
45
@@ -62,6 +62,8 @@ Key | Type | Description
62
62
63
63
Represents a [deleted branch or tag](/v3/git/refs/#delete-a-reference).
64
64
65
+
Note: webhooks will not receive this event for tags if more than three tags are deleted at once.
Copy file name to clipboardExpand all lines: content/webhooks/index.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,10 @@ payloads include the user who performed the event (`sender`) as well as the
83
83
organization (`organization`) and/or repository (`repository`) which the event
84
84
occurred on.
85
85
86
+
{{#tip}}
87
+
**Note:** Payloads are capped at 5 MB. If your event generates a larger payload, a webhook will not be fired. This may happen, for example, on a `create` event if many branches or tags are pushed at once. We suggest monitoring your payload size to ensure delivery.
88
+
{{/tip}}
89
+
86
90
### Delivery headers
87
91
88
92
HTTP requests made to your webhook's configured URL endpoint will contain
0 commit comments