From e286d64ce310533d648790057600c9fad5070edf Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 6 Feb 2026 11:51:21 -0300 Subject: [PATCH] Fix CI: remove path filters that don't match standalone repo structure - Remove 'paths' filter from push/pull_request triggers - Path filters like 'botui/**' only work in main gb repo - In standalone botui repo, files are at root level (src/, Cargo.toml, etc.) - CI will now run on all pushes to main branch --- .forgejo/workflows/botui.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.forgejo/workflows/botui.yaml b/.forgejo/workflows/botui.yaml index 67f4538..b93e0c5 100644 --- a/.forgejo/workflows/botui.yaml +++ b/.forgejo/workflows/botui.yaml @@ -3,16 +3,8 @@ name: BotUI CI on: push: branches: ["main"] - paths: - - "botui/**" - - "botlib/**" - - ".forgejo/workflows/botui.yaml" pull_request: branches: ["main"] - paths: - - "botui/**" - - "botlib/**" - - ".forgejo/workflows/botui.yaml" env: CARGO_BUILD_JOBS: 6