From d838860e35e294a3b2735b3ea7263f0222ab3c25 Mon Sep 17 00:00:00 2001 From: "Mark E. Haase" Date: Mon, 20 Nov 2023 11:08:11 -0500 Subject: [PATCH] Debug github api call x5 --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 87596414..54a564a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,8 +61,7 @@ jobs: for (const file of response.data) { if (file.filename.startsWith("corpus/")) { const flowName = file.filename.split("/").pop(); - const flowArg = encodeURI(file.raw_url); - const flowUrl = `${builderUrl}${flowArg}`; + const flowUrl = `${builderUrl}${file.raw_url}`; bullets.push(`* [${flowName}](${flowUrl})`); } }