From 78c2d967ffff5465fe3ce2706501b512ce912782 Mon Sep 17 00:00:00 2001 From: "Abiba (pi)" Date: Sun, 28 Jun 2026 00:37:10 +0000 Subject: [PATCH 1/7] chore: trigger CI test --- .gitea/workflows/TRIGGER.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitea/workflows/TRIGGER.md diff --git a/.gitea/workflows/TRIGGER.md b/.gitea/workflows/TRIGGER.md new file mode 100644 index 0000000..9d03ac5 --- /dev/null +++ b/.gitea/workflows/TRIGGER.md @@ -0,0 +1 @@ +# Runner From 45e206019caa770cd6961e6c534bb92a9487a7dd Mon Sep 17 00:00:00 2001 From: "Abiba (pi)" Date: Sun, 28 Jun 2026 00:38:11 +0000 Subject: [PATCH 2/7] chore: trigger CI debug test --- .gitea/workflows/TRIGGER2.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitea/workflows/TRIGGER2.md diff --git a/.gitea/workflows/TRIGGER2.md b/.gitea/workflows/TRIGGER2.md new file mode 100644 index 0000000..6219c02 --- /dev/null +++ b/.gitea/workflows/TRIGGER2.md @@ -0,0 +1 @@ +# Test Sun Jun 28 00:38:10 UTC 2026 From 67b6f64a93f457fb76b22219871023d197954943 Mon Sep 17 00:00:00 2001 From: "Abiba (pi)" Date: Sun, 28 Jun 2026 00:40:22 +0000 Subject: [PATCH 3/7] test: simple runner test without actions --- test-workflow/simple-test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test-workflow/simple-test.yml diff --git a/test-workflow/simple-test.yml b/test-workflow/simple-test.yml new file mode 100644 index 0000000..d0ef4e6 --- /dev/null +++ b/test-workflow/simple-test.yml @@ -0,0 +1,10 @@ +name: Simple Test +on: pull_request +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "Hello from runner! OS: $(uname -a)" + - run: python3 --version + - run: git --version + - run: echo "Runner works!" From c2f91f6e58f484c4b8170f146d8e571bbbb77963 Mon Sep 17 00:00:00 2001 From: "Abiba (pi)" Date: Sun, 28 Jun 2026 00:41:49 +0000 Subject: [PATCH 4/7] ci: replace actions/checkout with native git clone --- .gitea/workflows/ci.yml | 9 ++++++--- .gitea/workflows/deploy.yml | 12 ++++++++---- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 27dd7f3..4f74a6f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,7 +16,10 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout code + run: | + git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . 2>&1 + git fetch origin ${{ github.sha }} 2>/dev/null; git checkout ${{ github.sha }} 2>/dev/null || true - name: Validate config schemas run: | @@ -50,8 +53,8 @@ jobs: runs-on: ubuntu-latest needs: [validate] steps: - - uses: actions/checkout@v4 - + - name: Checkout + run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to agents env: TAG: ${{ github.ref_name }} diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3da6006..66947eb 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -20,7 +20,8 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Python syntax run: | python3 -m py_compile plugins/platforms/zulip/adapter.py 2>/dev/null @@ -35,7 +36,8 @@ jobs: needs: [validate] environment: canary steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to Tanko env: TAG: ${{ github.ref_name }} @@ -63,7 +65,8 @@ jobs: needs: [deploy-tanko] environment: production steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to all Hermes agents env: TAG: ${{ github.ref_name }} @@ -93,7 +96,8 @@ jobs: needs: [validate] environment: agent-zero steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to kagentz env: TAG: ${{ github.ref_name }} From 5300c0f99830f07875a89982ecb9aa46b5b2b681 Mon Sep 17 00:00:00 2001 From: "Abiba (pi)" Date: Sun, 28 Jun 2026 00:42:41 +0000 Subject: [PATCH 5/7] ci: add auth to git clone in workflows --- .gitea/workflows/ci.yml | 5 ++--- .gitea/workflows/deploy.yml | 8 ++++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4f74a6f..9c3ced1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,8 +18,7 @@ jobs: steps: - name: Checkout code run: | - git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . 2>&1 - git fetch origin ${{ github.sha }} 2>/dev/null; git checkout ${{ github.sha }} 2>/dev/null || true + git clone --depth 1 --branch $GITHUB_HEAD_REF http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . 2>&1 || git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . 2>&1 - name: Validate config schemas run: | @@ -54,7 +53,7 @@ jobs: needs: [validate] steps: - name: Checkout - run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to agents env: TAG: ${{ github.ref_name }} diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 66947eb..9031218 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Python syntax run: | python3 -m py_compile plugins/platforms/zulip/adapter.py 2>/dev/null @@ -37,7 +37,7 @@ jobs: environment: canary steps: - name: Checkout - run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to Tanko env: TAG: ${{ github.ref_name }} @@ -66,7 +66,7 @@ jobs: environment: production steps: - name: Checkout - run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to all Hermes agents env: TAG: ${{ github.ref_name }} @@ -97,7 +97,7 @@ jobs: environment: agent-zero steps: - name: Checkout - run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to kagentz env: TAG: ${{ github.ref_name }} From 84b80179eccc22092c6387f1e410c782e68762b5 Mon Sep 17 00:00:00 2001 From: "Abiba (pi)" Date: Sun, 28 Jun 2026 00:43:43 +0000 Subject: [PATCH 6/7] ci: debug checkout step --- .gitea/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9c3ced1..e9379ce 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,7 +18,11 @@ jobs: steps: - name: Checkout code run: | - git clone --depth 1 --branch $GITHUB_HEAD_REF http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . 2>&1 || git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . 2>&1 + echo "PWD: $(pwd)" + echo "LS: $(ls -la)" + git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git /tmp/repo 2>&1 + cp -a /tmp/repo/. . 2>&1 + rm -rf /tmp/repo - name: Validate config schemas run: | From 9611f935bc9c16dee12ab6ee9d280104cfd0768b Mon Sep 17 00:00:00 2001 From: "Abiba (pi)" Date: Sun, 28 Jun 2026 00:45:02 +0000 Subject: [PATCH 7/7] test: minimal workflow --- .gitea/workflows/minimal.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitea/workflows/minimal.yml diff --git a/.gitea/workflows/minimal.yml b/.gitea/workflows/minimal.yml new file mode 100644 index 0000000..72d4476 --- /dev/null +++ b/.gitea/workflows/minimal.yml @@ -0,0 +1,9 @@ +name: Minimal Test +on: push +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "HELLO_WORLD" + - run: pwd + - run: ls -la