Issue response: attempt to fix url again (#25184)
Last attempt Release Notes: - N/A
This commit is contained in:
parent
836661503f
commit
78b43ba745
1 changed files with 2 additions and 4 deletions
|
@ -43,10 +43,8 @@ async function main() {
|
||||||
...authorFilters,
|
...authorFilters,
|
||||||
];
|
];
|
||||||
|
|
||||||
const searchQuery = q.join("+");
|
|
||||||
|
|
||||||
const response = await octokit.rest.search.issuesAndPullRequests({
|
const response = await octokit.rest.search.issuesAndPullRequests({
|
||||||
q: searchQuery,
|
q: q.join("+"),
|
||||||
per_page: 100,
|
per_page: 100,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -96,7 +94,7 @@ async function main() {
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const issuesUrl = `${GITHUB_ISSUES_URL}?q=${searchQuery}`;
|
const issuesUrl = `${GITHUB_ISSUES_URL}?q=${encodeURIComponent(q.join(" "))}`;
|
||||||
|
|
||||||
blocks.push({
|
blocks.push({
|
||||||
type: "section",
|
type: "section",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue