Issue response: attempt to fix url again (#25184)

Last attempt

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons
2025-02-19 14:38:23 -05:00
committed by GitHub
parent 836661503f
commit 78b43ba745
+2 -4
View File
@@ -43,10 +43,8 @@ async function main() {
...authorFilters,
];
const searchQuery = q.join("+");
const response = await octokit.rest.search.issuesAndPullRequests({
q: searchQuery,
q: q.join("+"),
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({
type: "section",