Browse Source

chore: prefix deps workflows with 'deps-'

to organize workflow files better
Gabriel Horner 1 week ago
parent
commit
3e0d57bc32

+ 2 - 2
.github/workflows/cli.yml → .github/workflows/deps-cli.yml

@@ -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/**'

+ 2 - 2
.github/workflows/logseq-common.yml → .github/workflows/deps-common.yml

@@ -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:

+ 2 - 2
.github/workflows/db.yml → .github/workflows/deps-db.yml

@@ -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/**'

+ 2 - 2
.github/workflows/graph-parser.yml → .github/workflows/deps-graph-parser.yml

@@ -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/**'

+ 2 - 2
.github/workflows/outliner.yml → .github/workflows/deps-outliner.yml

@@ -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/**'

+ 2 - 2
.github/workflows/publishing.yml → .github/workflows/deps-publishing.yml

@@ -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/**'

+ 1 - 1
deps/cli/README.md

@@ -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
 

+ 1 - 1
deps/common/README.md

@@ -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
 

+ 1 - 1
deps/db/README.md

@@ -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
 

+ 1 - 1
deps/graph-parser/README.md

@@ -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
 

+ 1 - 1
deps/outliner/README.md

@@ -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
 

+ 1 - 1
deps/publishing/README.md

@@ -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