coldbydefault-portfolio
    Preparing search index...

    Interface GitHubEventPayload

    interface GitHubEventPayload {
        action?: string;
        commits?: {
            author: { email: string; name: string };
            distinct: boolean;
            message: string;
            sha: string;
            url: string;
        }[];
        description?: string;
        forkee?: GitHubRepository;
        issue?: {
            body: string;
            created_at: string;
            id: number;
            number: number;
            state: string;
            title: string;
            updated_at: string;
            user: GitHubUser;
        };
        master_branch?: string;
        pull_request?: {
            body: string;
            created_at: string;
            id: number;
            number: number;
            state: string;
            title: string;
            updated_at: string;
            user: GitHubUser;
        };
        pusher_type?: string;
        ref?: string;
        ref_type?: string;
        release?: {
            body: string;
            created_at: string;
            draft: boolean;
            id: number;
            name: string;
            prerelease: boolean;
            published_at: string;
            tag_name: string;
        };
    }
    Index

    Properties

    action?: string
    commits?: {
        author: { email: string; name: string };
        distinct: boolean;
        message: string;
        sha: string;
        url: string;
    }[]
    description?: string
    issue?: {
        body: string;
        created_at: string;
        id: number;
        number: number;
        state: string;
        title: string;
        updated_at: string;
        user: GitHubUser;
    }
    master_branch?: string
    pull_request?: {
        body: string;
        created_at: string;
        id: number;
        number: number;
        state: string;
        title: string;
        updated_at: string;
        user: GitHubUser;
    }
    pusher_type?: string
    ref?: string
    ref_type?: string
    release?: {
        body: string;
        created_at: string;
        draft: boolean;
        id: number;
        name: string;
        prerelease: boolean;
        published_at: string;
        tag_name: string;
    }