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 0cd4e7d commit f637d37Copy full SHA for f637d37
.github/checkForHttpStatusCodesUpdate.js
@@ -58,7 +58,7 @@ const fetchHttpStatusCodesList = async () => {
58
const issueTitleBase = 'IANA HTTP Status Code Update';
59
60
const searchForExistingGithubIssue = async ( { lastUpdatedDate, github, context } ) => {
61
- const query = [ issueTitleBase, lastUpdatedDate, 'in:title', `repo:${context.repo.full_name}`, 'type:issue' ].join( '+' );
+ const query = [ issueTitleBase, lastUpdatedDate, 'in:title', `repo:${context.payload.repository.full_name}`, 'type:issue' ].join( '+' );
62
const searchResult = await github.search.issuesAndPullRequests( {
63
q: query,
64
} );
0 commit comments