@oss-autopilot/core - v1.6.3
    Preparing search index...

    Interface CommentedIssueWithResponse

    Issue where someone responded after the user's last comment.

    interface CommentedIssueWithResponse {
        daysSinceUserComment: number;
        isFromMaintainer: boolean;
        labels: string[];
        lastResponseAt: string;
        lastResponseAuthor: string;
        lastResponseBody: string;
        number: number;
        repo: string;
        status: "new_response";
        title: string;
        url: string;
        userLastCommentedAt: string;
    }

    Hierarchy

    • CommentedIssueBase
      • CommentedIssueWithResponse
    Index

    Properties

    daysSinceUserComment: number
    isFromMaintainer: boolean

    True when the responder has OWNER, MEMBER, or COLLABORATOR author_association on the repository (i.e., someone with repo-level permissions, not just a community user).

    labels: string[]
    lastResponseAt: string
    lastResponseAuthor: string
    lastResponseBody: string
    number: number
    repo: string
    status: "new_response"
    title: string
    url: string
    userLastCommentedAt: string