From e45985e6ed30e5c8582bf4a024878d223a1512c5 Mon Sep 17 00:00:00 2001 From: t-will-gillis <339.colorado.dev@gmail.com> Date: Sun, 10 May 2026 12:15:06 -0700 Subject: [PATCH] add filter to ensure only issues returned --- .../add-preliminary-comment/preliminary-update-comment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-actions/trigger-issue/add-preliminary-comment/preliminary-update-comment.js b/github-actions/trigger-issue/add-preliminary-comment/preliminary-update-comment.js index cfe875172d..32a26b5cde 100644 --- a/github-actions/trigger-issue/add-preliminary-comment/preliminary-update-comment.js +++ b/github-actions/trigger-issue/add-preliminary-comment/preliminary-update-comment.js @@ -138,7 +138,7 @@ async function assignedToAnotherIssue() { owner: context.repo.owner, repo: context.repo.repo, assignee: assignee - })).data; + })).data.filter(issue => !issue.pull_request); const otherIssues = [];