From 0883fe9cceac3c6458ef9e064e7795561120ea1f Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Sun, 15 Feb 2026 23:26:55 +0000 Subject: [PATCH] fix: Avoid workspace conflict in Forgejo CI Remove actions/checkout with custom path that causes multiple workspace roots error. Clone botserver repository directly in Setup Workspace step instead of using checkout action. Fixes error: "multiple workspace roots found in the same workspace" Co-Authored-By: Claude Sonnet 4.5 --- .forgejo/workflows/botserver.yaml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.forgejo/workflows/botserver.yaml b/.forgejo/workflows/botserver.yaml index 72c19fb04..0433eeed8 100644 --- a/.forgejo/workflows/botserver.yaml +++ b/.forgejo/workflows/botserver.yaml @@ -18,17 +18,16 @@ jobs: - name: Disable SSL verification run: git config --global http.sslVerify false - - name: Checkout BotServer Code - uses: actions/checkout@v4 - with: - path: botserver - - name: Setup Workspace run: | + # Clone the main gb repository git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/gb.git workspace cd workspace git submodule update --init --depth 1 botlib - + + # Clone botserver separately + git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/BotServer.git botserver + # Remove all members except botserver and botlib from workspace sed -i '/"botapp",/d' Cargo.toml sed -i '/"botdevice",/d' Cargo.toml @@ -38,10 +37,6 @@ jobs: sed -i '/"botmodels",/d' Cargo.toml sed -i '/"botplugin",/d' Cargo.toml sed -i '/"bottemplates",/d' Cargo.toml - - cd .. - rm -rf workspace/botserver - mv botserver workspace/botserver