MCPcopy Create free account
hub / github.com/braintrustdata/bash-agent-evals / PushEvent

Interface PushEvent

src/data/schema.ts:112–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112export 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
131export type GitHubEvent =
132 | IssuesEvent

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected