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

Joseph T. Lyons created

Release Notes:

- N/A

Change summary

script/issue_response/main.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

script/issue_response/main.js 🔗

@@ -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",