| 110 | } |
| 111 | |
| 112 | export interface PushEvent extends BaseEvent { |
| 113 | type: 'PushEvent'; |
| 114 | payload: { |
| 115 | push_id: number; |
| 116 | size: number; |
| 117 | distinct_size: number; |
| 118 | ref: string; |
| 119 | head: string; |
| 120 | before: string; |
| 121 | commits: Array<{ |
| 122 | sha: string; |
| 123 | author: { name: string; email: string }; |
| 124 | message: string; |
| 125 | distinct: boolean; |
| 126 | url: string; |
| 127 | }>; |
| 128 | }; |
| 129 | } |
| 130 | |
| 131 | export type GitHubEvent = |
| 132 | | IssuesEvent |
nothing calls this directly
no outgoing calls
no test coverage detected