Revert CI workflow to use path filters

- Restore paths filter to only trigger on relevant changes
- botserver/, botui/, botlib/, Cargo.toml, Cargo.lock
- Prevents unnecessary CI runs on unrelated changes
This commit is contained in:
Rodrigo Rodriguez 2026-04-30 22:36:25 -03:00
parent 79f94ac9c6
commit 04f7b55065

View file

@ -1,8 +1,15 @@
name: BotServer CI
on:
push:
branches: [main]
push:
branches: [main]
paths:
- "botserver/**"
- "botui/**"
- "botlib/**"
- ".forgejo/workflows/botserver.yaml"
- "Cargo.toml"
- "Cargo.lock"
jobs:
build: