fix: handle null comment/review author from deleted accounts (#1490)

GitHub's GraphQL author field is null when the account behind a
comment, review, PR, or issue has been deleted (the ghost user). The
action typed author as non-null and read author.login directly, so a
single comment from a deleted account threw and was swallowed into a
generic 'Failed to fetch PR/issue data', failing the entire run.

Make author nullable on the four affected types and fall back to
'ghost' at each login read. With the type nullable, tsc flags every
dereference, so all sites are covered.
This commit is contained in:
Paarth
2026-07-15 21:00:22 -07:00
committed by GitHub
parent 2988cbe14a
commit 3e807ec379
5 changed files with 112 additions and 14 deletions
+6 -6
View File
@@ -204,11 +204,9 @@ export function isBodySafeToUse(
* @param excludeActors - Comma-separated actors to exclude
* @returns Filtered array of comments
*/
export function filterCommentsByActor<T extends { author: { login: string } }>(
comments: T[],
includeActors: string = "",
excludeActors: string = "",
): T[] {
export function filterCommentsByActor<
T extends { author: { login: string } | null },
>(comments: T[], includeActors: string = "", excludeActors: string = ""): T[] {
const includeParsed = parseActorFilter(includeActors);
const excludeParsed = parseActorFilter(excludeActors);
@@ -219,7 +217,9 @@ export function filterCommentsByActor<T extends { author: { login: string } }>(
return comments.filter((comment) =>
shouldIncludeCommentByActor(
comment.author.login,
// author is null for comments from deleted ("ghost") accounts; treat them
// as the "ghost" login so filtering never dereferences null and crashes.
comment.author?.login ?? "ghost",
includeParsed,
excludeParsed,
),
+4 -4
View File
@@ -21,7 +21,7 @@ export function formatContext(
const prData = contextData as GitHubPullRequest;
const sanitizedTitle = sanitizeContent(prData.title);
return `PR Title: ${sanitizedTitle}
PR Author: ${prData.author.login}
PR Author: ${prData.author?.login ?? "ghost"}
PR Branch: ${prData.headRefName} -> ${prData.baseRefName}
PR State: ${prData.state}
PR Labels: ${formatLabels(prData.labels.nodes)}
@@ -33,7 +33,7 @@ Changed Files: ${prData.files.nodes.length} files`;
const issueData = contextData as GitHubIssue;
const sanitizedTitle = sanitizeContent(issueData.title);
return `Issue Title: ${sanitizedTitle}
Issue Author: ${issueData.author.login}
Issue Author: ${issueData.author?.login ?? "ghost"}
Issue State: ${issueData.state}
Issue Labels: ${formatLabels(issueData.labels.nodes)}`;
}
@@ -71,7 +71,7 @@ export function formatComments(
body = sanitizeContent(body);
return `[${comment.author.login} at ${comment.createdAt}]: ${body}`;
return `[${comment.author?.login ?? "ghost"} at ${comment.createdAt}]: ${body}`;
})
.join("\n\n");
}
@@ -85,7 +85,7 @@ export function formatReviewComments(
}
const formattedReviews = reviewData.nodes.map((review) => {
let reviewOutput = `[Review by ${review.author.login} at ${review.submittedAt}]: ${review.state}`;
let reviewOutput = `[Review by ${review.author?.login ?? "ghost"} at ${review.submittedAt}]: ${review.state}`;
if (review.body && review.body.trim()) {
let body = review.body;
+8 -4
View File
@@ -1,4 +1,8 @@
// Types for GitHub GraphQL query responses
// GitHub's GraphQL `author`/`actor` fields resolve to null when the underlying
// account has been deleted (the "ghost" user). Any field typed as
// `GitHubAuthor | null` can therefore be null at runtime and must be guarded.
export type GitHubAuthor = {
login: string;
name?: string;
@@ -8,7 +12,7 @@ export type GitHubComment = {
id: string;
databaseId: string;
body: string;
author: GitHubAuthor;
author: GitHubAuthor | null;
createdAt: string;
updatedAt?: string;
lastEditedAt?: string;
@@ -39,7 +43,7 @@ export type GitHubFile = {
export type GitHubReview = {
id: string;
databaseId: string;
author: GitHubAuthor;
author: GitHubAuthor | null;
body: string;
state: string;
submittedAt: string;
@@ -53,7 +57,7 @@ export type GitHubReview = {
export type GitHubPullRequest = {
title: string;
body: string;
author: GitHubAuthor;
author: GitHubAuthor | null;
baseRefName: string;
headRefName: string;
headRefOid: string;
@@ -95,7 +99,7 @@ export type GitHubPullRequest = {
export type GitHubIssue = {
title: string;
body: string;
author: GitHubAuthor;
author: GitHubAuthor | null;
createdAt: string;
updatedAt?: string;
lastEditedAt?: string;