Files
release-action/node_modules/@actions/github/lib/interfaces.d.ts
Nick Cipollo 10c84d509b
Some checks failed
Test / check_pr (push) Has been cancelled
Prepare release 1.8.8
2021-08-06 14:45:16 -04:00

41 lines
811 B
TypeScript

export interface PayloadRepository {
[key: string]: any;
full_name?: string;
name: string;
owner: {
[key: string]: any;
login: string;
name?: string;
};
html_url?: string;
}
export interface WebhookPayload {
[key: string]: any;
repository?: PayloadRepository;
issue?: {
[key: string]: any;
number: number;
html_url?: string;
body?: string;
};
pull_request?: {
[key: string]: any;
number: number;
html_url?: string;
body?: string;
};
sender?: {
[key: string]: any;
type: string;
};
action?: string;
installation?: {
id: number;
[key: string]: any;
};
comment?: {
id: number;
[key: string]: any;
};
}