Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion github/event_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1374,7 +1374,8 @@ type PushEvent struct {
Size *int `json:"size,omitempty"`
// Commits is the list of commits in the push event.
//
// Deprecated: GitHub will remove commit summaries from Events API payloads on October 7, 2025.
// This field is only populated for webhook events.
// It has been removed from Events API payloads on October 7, 2025.
// Use the Commits REST API endpoint to get detailed commit information.
// See: https://docs.github.com/rest/commits/commits#list-commits
Commits []*HeadCommit `json:"commits,omitempty"`
Expand Down
Loading