Issue response: do not encode query parameters (#25180)

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons 2025-02-19 13:22:46 -05:00 committed by GitHub
parent 5f6d049751
commit c9bd44f983
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -96,7 +96,7 @@ async function main() {
},
}));
const issuesUrl = `${GITHUB_ISSUES_URL}?q=${encodeURIComponent(searchQuery)}`;
const issuesUrl = `${GITHUB_ISSUES_URL}?q=${searchQuery}`;
blocks.push({
type: "section",