We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f364a6 commit 2c9a444Copy full SHA for 2c9a444
.github/githubIssues.js
@@ -1,6 +1,6 @@
1
2
const searchForExistingGithubIssue = async ( { keywords, github, context } ) => {
3
- const query = keywords.concat( [ 'in:title', `repo:${context.repo.repo}`, 'type:issue' ] ).join( '+' );
+ const query = keywords.concat( [ 'in:title', `repo:${context.repo.owner}/${context.repo.repo}`, 'type:issue' ] ).join( '+' );
4
const searchResponse = await github.search.issuesAndPullRequests( {
5
q: query,
6
} );
0 commit comments