Interface NotificationRepository

Minimal repository info embedded in a notification.

interface NotificationRepository {
    full_name: string;
    html_url: string;
    id: number;
    name: string;
    private: boolean;
}

Properties

full_name: string

Full name in owner/repo format

html_url: string

URL to the repository on GitHub

id: number

Unique numeric repository ID

name: string

Repository name (without owner)

private: boolean

Whether the repository is private