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:
parent
79f94ac9c6
commit
04f7b55065
1 changed files with 9 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue