Skip to content

Commit 94736e5

Browse files
authored
chore(issue-generation): remove 'is:open' filter from issue search query (#202)
1 parent 4bf4a6e commit 94736e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/github.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export const findGitHubIssueByTitle = async (
132132
const githubOrg = properties.USER ?? DEFAULT_CONFIG.githubOrg;
133133

134134
const issues = await githubClient.request('GET /search/issues', {
135-
q: `is:open in:title repo:"${githubOrg}/${properties.REPO}" "${title}"`,
135+
q: `in:title repo:"${githubOrg}/${properties.REPO}" "${title}"`,
136136
advanced_search: true,
137137
per_page: 1,
138138
});

0 commit comments

Comments
 (0)