From b584456d5cfcaa8286cc15978ce5c1708b2fbdd3 Mon Sep 17 00:00:00 2001 From: Dario Piotrowicz Date: Mon, 23 Feb 2026 21:59:10 +0000 Subject: [PATCH] Change curl command in triage-issue.yml to follow redirects (#12624) --- .github/workflows/triage-issue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/triage-issue.yml b/.github/workflows/triage-issue.yml index a9a92e1e69e8..45e8fde146cd 100644 --- a/.github/workflows/triage-issue.yml +++ b/.github/workflows/triage-issue.yml @@ -133,7 +133,7 @@ jobs: }') # POST to dashboard API - HTTP_STATUS=$(curl -s -o response.json -w "%{http_code}" \ + HTTP_STATUS=$(curl -L -s -o response.json -w "%{http_code}" \ -X POST "${DASHBOARD_URL}/api/report/${ISSUE}" \ -H "Content-Type: application/json" \ -H "CF-Access-Client-Id: ${CF_ACCESS_CLIENT_ID}" \