From 4456474595624642936ca7e4a6131de4a74a0733 Mon Sep 17 00:00:00 2001 From: Lucas Koontz Date: Sat, 29 Aug 2026 06:50:48 -0700 Subject: [PATCH 1/2] fix(ci): update PR env comment link labels and add Cowork Web link Renames "Hub (console)" to "Console", "Keycloak admin" to "Keycloak Admin", and "cowork-server" to "Cowork Server API" for consistency. Adds a new "Cowork Web" link pointing to the cowork subdomain root alongside the existing server API link. --- .github/workflows/pr-env-comment.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-env-comment.yml b/.github/workflows/pr-env-comment.yml index e1385cb..844be2b 100644 --- a/.github/workflows/pr-env-comment.yml +++ b/.github/workflows/pr-env-comment.yml @@ -204,11 +204,12 @@ jobs: ALL="${LINKS:-[]}" if [ "$STANDARD" = "true" ]; then ALL="$(jq -cn --arg e "$ENV_NAME" --arg d "$HOST_SUFFIX" --argjson extra "${LINKS:-[]}" ' - [ {label: "Hub (console)", url: "https://\($e).\($d)"}, + [ {label: "Console", url: "https://\($e).\($d)"}, {label: "Auth API", url: "https://auth-\($e).\($d)"}, - {label: "Keycloak admin", url: "https://auth-\($e).\($d)/auth/admin/"}, + {label: "Cowork Web", url: "https://cowork-\($e).\($d)"} ] + {label: "Keycloak Admin", url: "https://auth-\($e).\($d)/auth/admin/"}, {label: "Inference API", url: "https://api-\($e).\($d)/v1"}, - {label: "cowork-server", url: "https://cowork-\($e).\($d)/api"} ] + {label: "Cowork Server API", url: "https://cowork-\($e).\($d)/api"} ] + $extra + [ {label: "Namespace", url: "`\($e)`"} ]')" fi From d5bedb49b914a015c10bb87c9757512b0f5d6284 Mon Sep 17 00:00:00 2001 From: Lucas Koontz Date: Sat, 29 Aug 2026 08:47:50 -0700 Subject: [PATCH 2/2] fix(ci): restore missing links dropped by premature array close in PR env comment The Cowork Web entry closed the jq array with `]` instead of `,`, silently dropping the Keycloak Admin, Inference API, and Cowork Server API links from the PR environment comment. --- .github/workflows/pr-env-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-env-comment.yml b/.github/workflows/pr-env-comment.yml index 844be2b..2e2eaec 100644 --- a/.github/workflows/pr-env-comment.yml +++ b/.github/workflows/pr-env-comment.yml @@ -206,7 +206,7 @@ jobs: ALL="$(jq -cn --arg e "$ENV_NAME" --arg d "$HOST_SUFFIX" --argjson extra "${LINKS:-[]}" ' [ {label: "Console", url: "https://\($e).\($d)"}, {label: "Auth API", url: "https://auth-\($e).\($d)"}, - {label: "Cowork Web", url: "https://cowork-\($e).\($d)"} ] + {label: "Cowork Web", url: "https://cowork-\($e).\($d)"}, {label: "Keycloak Admin", url: "https://auth-\($e).\($d)/auth/admin/"}, {label: "Inference API", url: "https://api-\($e).\($d)/v1"}, {label: "Cowork Server API", url: "https://cowork-\($e).\($d)/api"} ]