From 6b2ef83685e265981089b69095938dfa5f6a10b7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 16 Sep 2026 14:34:57 +0000 Subject: [PATCH 1/2] Initial plan From 578bc4848edd83b7daac63d74b023ae3fa19657c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 16 Sep 2026 14:36:53 +0000 Subject: [PATCH 2/2] Fix submodule URL rewrite scope in update workflow Co-authored-by: farfromrefug <655344+farfromrefug@users.noreply.github.com> --- .github/workflows/update.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d543093..f318d5b 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -86,10 +86,15 @@ jobs: working-directory: ${{ matrix.repo }} run: | if [ -f .gitmodules ]; then - git config --local --add url."https://github.com/".insteadOf "git@github.com:" - git config --local --add url."https://github.com/".insteadOf "ssh://git@github.com/" - git submodule sync --recursive - git -c protocol.version=2 submodule update --init --force --depth=1 --recursive + git \ + -c url."https://github.com/".insteadOf=git@github.com: \ + -c url."https://github.com/".insteadOf=ssh://git@github.com/ \ + submodule sync --recursive + git \ + -c protocol.version=2 \ + -c url."https://github.com/".insteadOf=git@github.com: \ + -c url."https://github.com/".insteadOf=ssh://git@github.com/ \ + submodule update --init --force --depth=1 --recursive fi - name: Set yarn cache directory id: yarn-cache