fix: gh workflows missing deps

This result in bugs as deps changes could break downstream dependents
since their workflows aren't run. outliner was missing graph-parser and
all deps were missing common
This commit is contained in:
Gabriel Horner
2025-07-21 14:20:02 -04:00
committed by Gabriel Horner
parent e489e93614
commit 6924223c8c
4 changed files with 24 additions and 9 deletions

View File

@@ -7,17 +7,20 @@ on:
branches: [master]
paths:
- 'deps/graph-parser/**'
# db is a local dep that could break functionality in this lib and should trigger this
- 'deps/db/**'
- '.github/workflows/graph-parser.yml'
- '!deps/graph-parser/**.md'
# Deps that logseq/graph-parser depends on should trigger this workflow
- 'deps/db/**'
- 'deps/common/**'
pull_request:
branches: [master]
paths:
- 'deps/graph-parser/**'
- 'deps/db/**'
- '.github/workflows/graph-parser.yml'
- '!deps/graph-parser/**.md'
# Deps that logseq/graph-parser depends on should trigger this workflow
- 'deps/db/**'
- 'deps/common/**'
defaults:
run: