ci(build): include more paths in the pipeline's triggering conditions

Signed-off-by: k4yt3x <i@k4yt3x.com>
This commit is contained in:
k4yt3x 2024-11-22 00:00:00 +00:00
parent d3de1ded96
commit a77cf9e14f
No known key found for this signature in database

View File

@ -2,14 +2,18 @@ name: Build
on: on:
push: push:
paths: paths:
- ".github/workflows/build.yml"
- "include/**" - "include/**"
- "src/**" - "src/**"
- "tools/**"
- "third_party/**" - "third_party/**"
- "CMakeLists.txt" - "CMakeLists.txt"
pull_request: pull_request:
paths: paths:
- ".github/workflows/build.yml"
- "include/**" - "include/**"
- "src/**" - "src/**"
- "tools/**"
- "third_party/**" - "third_party/**"
- "CMakeLists.txt" - "CMakeLists.txt"
workflow_dispatch: {} workflow_dispatch: {}