@shortcut/client
    Preparing search index...

    Interface HistoryActionPullRequest

    An action representing various operations for a Pull Request.

    interface HistoryActionPullRequest {
        action: "update" | "open" | "reopen" | "close" | "sync" | "comment";
        entity_type: string;
        id: number;
        number: number;
        title: string;
        url: string;
    }
    Index

    Properties

    action: "update" | "open" | "reopen" | "close" | "sync" | "comment"

    The action of the entity referenced.

    entity_type: string

    The type of entity referenced.

    id: number

    The ID of the entity referenced.

    int64

    number: number

    The VCS Repository-specific ID for the Pull Request.

    int64

    title: string

    The title of the Pull Request.

    url: string

    The URL from the provider of the VCS Pull Request.

    2048

    ^https?://.+$