From 0d271b159d0be039f2cbdb204f83fc8e67ef8951 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 16 Sep 2026 14:30:06 +0000 Subject: [PATCH 1/2] Initial plan From d61d312d90db1ce5a7685bcb87f501df5e2740c1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 16 Sep 2026 14:31:55 +0000 Subject: [PATCH 2/2] fix: scope submodule URL rewrite to update command Co-authored-by: farfromrefug <655344+farfromrefug@users.noreply.github.com> --- .github/workflows/update.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d543093..26f900e 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -86,10 +86,12 @@ 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/ \ + -c protocol.version=2 \ + submodule update --init --force --depth=1 --recursive fi - name: Set yarn cache directory id: yarn-cache