From 7ea2daf08c5e7b25b88de86eafcdff2006f7f908 Mon Sep 17 00:00:00 2001 From: LongyuZhang Date: Wed, 30 Oct 2024 17:42:16 -0400 Subject: [PATCH] Fix possible issue query for infra repo Fix possible issue query for infra repo Signed-off-by: LongyuZhang --- test-result-summary-client/src/Build/PossibleIssues.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-result-summary-client/src/Build/PossibleIssues.jsx b/test-result-summary-client/src/Build/PossibleIssues.jsx index fdc973e2..cba51e8b 100644 --- a/test-result-summary-client/src/Build/PossibleIssues.jsx +++ b/test-result-summary-client/src/Build/PossibleIssues.jsx @@ -110,7 +110,7 @@ const PossibleIssues = () => { } const response = await fetch( `https://api.github.com/search/issues?q=${generalTestName}+repo:adoptium/aqa-tests` + - `+repo:AdoptOpenJDK/openjdk-infrastructure+repo:adoptium/aqa-build+repo:adoptium/aqa-systemtest+repo:adoptium/TKG${additionalRepo}`, + `+repo:adoptium/infrastructure+repo:adoptium/aqa-build+repo:adoptium/aqa-systemtest+repo:adoptium/TKG${additionalRepo}`, { method: 'get', }