From 36cad88fe4a8a9bcc68b0ae8fc68ed90d252c4d6 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 31 Oct 2025 17:52:12 -0400 Subject: [PATCH] chore(issue-generation): remove 'is:open' filter from issue search query --- src/github.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.mjs b/src/github.mjs index 5871cd0..97f2702 100644 --- a/src/github.mjs +++ b/src/github.mjs @@ -65,7 +65,7 @@ export const findIssueByTitle = async (githubClient, title, { properties }) => { const githubOrg = properties.USER ?? DEFAULT_CONFIG.githubOrg; const issues = await githubClient.request('GET /search/issues', { - q: `is:open in:title repo:"${githubOrg}/${properties.REPO}" "${title}"`, + q: `in:title repo:"${githubOrg}/${properties.REPO}" "${title}"`, advanced_search: true, per_page: 1, });