From f4e9167d4774c29fa23a1436aa93bb1ab3cb6252 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 2 Feb 2026 17:37:32 +0000 Subject: [PATCH] fix(ci): add Yarn 4 gitUrlSubstitution for HTTPS Yarn 4 ignores git config and uses its own URL resolution. Added gitUrlSubstitution in .yarnrc.yml to force HTTPS for GitHub repos. https://claude.ai/code/session_01QPt4WssG6jjEciQKdVpFtK --- .yarnrc.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.yarnrc.yml b/.yarnrc.yml index 3186f3f0..0442e2b1 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -1 +1,6 @@ nodeLinker: node-modules + +# Force HTTPS for GitHub git dependencies (fixes CI permission errors) +gitUrlSubstitution: + "ssh://git@github.com/": "https://github.com/" + "git@github.com:": "https://github.com/"