From f28a082ff4fb7bb14feee7750a60206a8d7f4802 Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Mon, 22 Dec 2025 14:37:41 +1100 Subject: [PATCH] maint(core): remove leading slash on gh api call parameter The leading slash was causing cygpath conversion to prepend and convert the path into a DOS-style path. Test-bot: skip Build-bot: skip --- .github/workflows/core-arm64-windows-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/core-arm64-windows-test.yml b/.github/workflows/core-arm64-windows-test.yml index aaf9477cdd..a9878111ef 100644 --- a/.github/workflows/core-arm64-windows-test.yml +++ b/.github/workflows/core-arm64-windows-test.yml @@ -52,7 +52,7 @@ jobs: gh api \ --method POST \ -H "Accept: application/vnd.github+json" \ - /repos/$GITHUB_REPOSITORY/statuses/${{ github.event.client_payload.buildSha }} \ + repos/$GITHUB_REPOSITORY/statuses/${{ github.event.client_payload.buildSha }} \ -f state='pending' \ -f target_url="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" \ -f description='Keyman Core - ARM64 test started' \ @@ -156,7 +156,7 @@ jobs: gh api \ --method POST \ -H "Accept: application/vnd.github+json" \ - /repos/$GITHUB_REPOSITORY/statuses/${{ github.event.client_payload.buildSha }} \ + repos/$GITHUB_REPOSITORY/statuses/${{ github.event.client_payload.buildSha }} \ -f state="$RESULT" \ -f target_url="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" \ -f description="$MSG" \