chore: prefix deps workflows with 'deps-'

to organize workflow files better
This commit is contained in:
Gabriel Horner
2026-01-21 14:16:38 -05:00
parent 42f89e11ae
commit 3e0d57bc32
12 changed files with 18 additions and 18 deletions

View File

@@ -7,7 +7,7 @@ on:
branches: [master]
paths:
- 'deps/cli/**'
- '.github/workflows/cli.yml'
- '.github/workflows/deps-cli.yml'
- '!deps/cli/**.md'
# Deps that logseq/cli depends on should trigger this workflow
- 'deps/outliner/**'
@@ -18,7 +18,7 @@ on:
branches: [master]
paths:
- 'deps/cli/**'
- '.github/workflows/cli.yml'
- '.github/workflows/deps-cli.yml'
- '!deps/cli/**.md'
# Deps that logseq/cli depends on should trigger this workflow
- 'deps/outliner/**'

View File

@@ -6,13 +6,13 @@ on:
branches: [master]
paths:
- 'deps/common/**'
- '.github/workflows/logseq-common.yml'
- '.github/workflows/deps-common.yml'
- '!deps/common/**.md'
pull_request:
branches: [master]
paths:
- 'deps/common/**'
- '.github/workflows/logseq-common.yml'
- '.github/workflows/deps-common.yml'
- '!deps/common/**.md'
defaults:

View File

@@ -6,7 +6,7 @@ on:
branches: [master]
paths:
- 'deps/db/**'
- '.github/workflows/db.yml'
- '.github/workflows/deps-db.yml'
- '!deps/db/**.md'
# Deps that logseq/db depends on should trigger this workflow
- 'deps/common/**'
@@ -14,7 +14,7 @@ on:
branches: [master]
paths:
- 'deps/db/**'
- '.github/workflows/db.yml'
- '.github/workflows/deps-db.yml'
- '!deps/db/**.md'
# Deps that logseq/db depends on should trigger this workflow
- 'deps/common/**'

View File

@@ -7,7 +7,7 @@ on:
branches: [master]
paths:
- 'deps/graph-parser/**'
- '.github/workflows/graph-parser.yml'
- '.github/workflows/deps-graph-parser.yml'
- '!deps/graph-parser/**.md'
# Deps that logseq/graph-parser depends on should trigger this workflow
- 'deps/db/**'
@@ -16,7 +16,7 @@ on:
branches: [master]
paths:
- 'deps/graph-parser/**'
- '.github/workflows/graph-parser.yml'
- '.github/workflows/deps-graph-parser.yml'
- '!deps/graph-parser/**.md'
# Deps that logseq/graph-parser depends on should trigger this workflow
- 'deps/db/**'

View File

@@ -7,7 +7,7 @@ on:
branches: [master]
paths:
- 'deps/outliner/**'
- '.github/workflows/outliner.yml'
- '.github/workflows/deps-outliner.yml'
- '!deps/outliner/**.md'
# Deps that logseq/outliner depends on should trigger this workflow
- 'deps/graph-parser/**'
@@ -17,7 +17,7 @@ on:
branches: [master]
paths:
- 'deps/outliner/**'
- '.github/workflows/outliner.yml'
- '.github/workflows/deps-outliner.yml'
- '!deps/outliner/**.md'
# Deps that logseq/outliner depends on should trigger this workflow
- 'deps/graph-parser/**'

View File

@@ -7,7 +7,7 @@ on:
branches: [master]
paths:
- 'deps/publishing/**'
- '.github/workflows/publishing.yml'
- '.github/workflows/deps-publishing.yml'
- '!deps/publishing/**.md'
# Deps that logseq/publishing depends on should trigger this workflow
- 'deps/db/**'
@@ -16,7 +16,7 @@ on:
branches: [master]
paths:
- 'deps/publishing/**'
- '.github/workflows/publishing.yml'
- '.github/workflows/deps-publishing.yml'
- '!deps/publishing/**.md'
# Deps that logseq/publishing depends on should trigger this workflow
- 'deps/db/**'

2
deps/cli/README.md vendored
View File

@@ -167,7 +167,7 @@ Most of this library is also compatible with ClojureScript for use on the
frontend. This library follows the practices that [the Logseq frontend
follows](/docs/dev-practices.md). Most of the same linters are used, with
configurations that are specific to this library. See [this library's CI
file](/.github/workflows/cli.yml) for linting examples.
file](/.github/workflows/deps-cli.yml) for linting examples.
### Setup

View File

@@ -16,7 +16,7 @@ This library is under the parent namespace `logseq.common`.
This follows the practices that [the Logseq frontend
follows](/docs/dev-practices.md). Most of the same linters are used, with
configurations that are specific to this library. See [this library's CI
file](/.github/workflows/logseq-common.yml) for linting examples.
file](/.github/workflows/deps-common.yml) for linting examples.
### Setup

2
deps/db/README.md vendored
View File

@@ -27,7 +27,7 @@ See the frontend for example usage.
This follows the practices that [the Logseq frontend
follows](/docs/dev-practices.md). Most of the same linters are used, with
configurations that are specific to this library. See [this library's CI
file](/.github/workflows/db.yml) for linting examples.
file](/.github/workflows/deps-db.yml) for linting examples.
### Setup

View File

@@ -27,7 +27,7 @@ usage.
This follows the practices that [the Logseq frontend
follows](/docs/dev-practices.md). Most of the same linters are used, with
configurations that are specific to this library. See [this library's CI
file](/.github/workflows/graph-parser.yml) for linting examples.
file](/.github/workflows/deps-graph-parser.yml) for linting examples.
### Setup

View File

@@ -19,7 +19,7 @@ See the frontend for cljs usage.
This follows the practices that [the Logseq frontend
follows](/docs/dev-practices.md). Most of the same linters are used, with
configurations that are specific to this library. See [this library's CI
file](/.github/workflows/outliner.yml) for linting examples.
file](/.github/workflows/deps-outliner.yml) for linting examples.
### Setup

View File

@@ -21,7 +21,7 @@ See `script/publishing.cljs` for a CLI example. See the frontend for cljs usage.
This follows the practices that [the Logseq frontend
follows](/docs/dev-practices.md). Most of the same linters are used, with
configurations that are specific to this library. See [this library's CI
file](/.github/workflows/publishing.yml) for linting examples.
file](/.github/workflows/deps-publishing.yml) for linting examples.
### Setup