From b14bd757f0842b9f9f284866693d0656e7424043 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 07:15:38 +0000 Subject: [PATCH 1/2] Initial plan From be01df34a8b021d9236d57eed5cef7052e5babe2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 07:17:58 +0000 Subject: [PATCH 2/2] Fix variable expansion inconsistency in entrypoint.sh Changed $REQ_TOKEN_URL to ${REQ_TOKEN_URL} on line 70 for consistency with the rest of the file where all variable expansions use braces. Co-authored-by: parkr <237985+parkr@users.noreply.github.com> --- linux/scripts/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/scripts/entrypoint.sh b/linux/scripts/entrypoint.sh index 9f0f6ac..e6f05b9 100644 --- a/linux/scripts/entrypoint.sh +++ b/linux/scripts/entrypoint.sh @@ -67,7 +67,7 @@ cleanup() { echo "Removing runner..." # token is only valid for 1h, so it needs to be re-queried # https://github.com/actions/runner/discussions/1799#discussioncomment-2747605 - REG_TOKEN=$(curl --fail-with-body -X POST -H "Authorization: token ${TOKEN}" -H "Accept: application/vnd.github+json" "$REQ_TOKEN_URL" | jq .token --raw-output) + REG_TOKEN=$(curl --fail-with-body -X POST -H "Authorization: token ${TOKEN}" -H "Accept: application/vnd.github+json" "${REQ_TOKEN_URL}" | jq .token --raw-output) ./config.sh remove --token "${REG_TOKEN}" }