mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-11-19 06:41:07 +08:00
* Add github package * Docs * Feedback * Accidentally added extra * Allow octokit to be extended * Respond to feedback * Feedback
40 lines
673 B
TypeScript
40 lines
673 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
export interface PayloadRepository {
|
|
[key: string]: any
|
|
fullName?: string
|
|
name: string
|
|
owner: {
|
|
[key: string]: any
|
|
login: string
|
|
name?: string
|
|
}
|
|
htmlUrl?: string
|
|
}
|
|
|
|
export interface WebhookPayload {
|
|
[key: string]: any
|
|
repository?: PayloadRepository
|
|
issue?: {
|
|
[key: string]: any
|
|
number: number
|
|
html_url?: string
|
|
body?: string
|
|
}
|
|
pullRequest?: {
|
|
[key: string]: any
|
|
number: number
|
|
htmlUrl?: string
|
|
body?: string
|
|
}
|
|
sender?: {
|
|
[key: string]: any
|
|
type: string
|
|
}
|
|
action?: string
|
|
installation?: {
|
|
id: number
|
|
[key: string]: any
|
|
}
|
|
}
|