Skip to content

Commit 2c9a444

Browse files
committed
ci: Fix check for existing update issues
1 parent 0f364a6 commit 2c9a444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/githubIssues.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
const searchForExistingGithubIssue = async ( { keywords, github, context } ) => {
3-
const query = keywords.concat( [ 'in:title', `repo:${context.repo.repo}`, 'type:issue' ] ).join( '+' );
3+
const query = keywords.concat( [ 'in:title', `repo:${context.repo.owner}/${context.repo.repo}`, 'type:issue' ] ).join( '+' );
44
const searchResponse = await github.search.issuesAndPullRequests( {
55
q: query,
66
} );

0 commit comments

Comments
 (0)