From 97e5db5b11f0c3753b55f0de129fabe2a5e9207b Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 28 Apr 2026 22:05:23 -0300 Subject: [PATCH] ci: remove submodule reference, fix health check port to 5858 --- .forgejo/workflows/botserver.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/botserver.yaml b/.forgejo/workflows/botserver.yaml index 861177e6..d78122e1 100644 --- a/.forgejo/workflows/botserver.yaml +++ b/.forgejo/workflows/botserver.yaml @@ -23,7 +23,6 @@ jobs: run: | cd /opt/gbo/work/generalbots git pull - git submodule update --init --recursive git ls-files -z | xargs -0 touch -d "@$(git log -1 --format='%ct')" git log --oneline -1 @@ -60,5 +59,5 @@ jobs: sleep 10 ssh -i /home/gbuser/.ssh/id_ed25519 -o StrictHostKeyChecking=no \ gbuser@system \ - "curl -sf http://localhost:8080/health && echo 'BotServer OK' || echo 'BotServer FAILED'; \ + "curl -sf http://localhost:5858/api/health && echo 'BotServer OK' || echo 'BotServer FAILED'; \ curl -sf http://localhost:3000/ && echo 'BotUI OK' || echo 'BotUI FAILED'"