From f4a6c38f2af481c1fda9465d60d054466bac64a4 Mon Sep 17 00:00:00 2001 From: Jill Regan Date: Mon, 9 Mar 2026 14:56:21 -0400 Subject: [PATCH] Add token to request --- .github/workflows/e2e-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 7f02631..2ec73b3 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -201,7 +201,7 @@ jobs: run: | url="${OP_CONNECT_HOST}/health" for i in $(seq 1 12); do - sync_status=$(curl -sf "$url" | jq -r '.dependencies[] | select(.service=="sync") | .status // empty') + sync_status=$(curl -sf -H "Authorization: Bearer $OP_CONNECT_TOKEN" "$url" | jq -r '.dependencies[] | select(.service=="sync") | .status // empty') if [ "$sync_status" = "ACTIVE" ]; then echo "Connect sync is ready" exit 0