From 670acb0375b499aa330b5909b79afe7244240d6d Mon Sep 17 00:00:00 2001 From: Aayush Shah Date: Thu, 19 Feb 2026 01:29:08 -0500 Subject: [PATCH] begin-testbox: send installation_model_id as JSON integer Was sending as a JSON string ("2") which caused a strict type mismatch in the backend's phone-home auth check. Co-authored-by: Cursor --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4431aa2..72368b0 100644 --- a/action.yml +++ b/action.yml @@ -63,7 +63,7 @@ runs: -H "Authorization: Bearer ${AUTH_TOKEN}" \ -d "{ \"testbox_id\": \"${TESTBOX_ID}\", - \"installation_model_id\": \"${INSTALLATION_MODEL_ID}\", + \"installation_model_id\": ${INSTALLATION_MODEL_ID}, \"status\": \"hydrating\", \"ip_address\": \"${RUNNER_HOST}\", \"ssh_port\": \"${RUNNER_SSH_PORT}\",