git-ents.gitmain
⌘K
foforge
commit e166fda
fix: watch all git-ents-server transitive deps in CD path filter

git-ents-server depends on git-effect, git-store, git-toolchain, and other workspace crates that weren’t in the CD trigger’s path filter, so a change to only one of them silently skipped deploy.

Assisted-by: Claude:claude-sonnet-5

Joseph D. Carpinelli · 1 month ago

Reviews

No reviews of this commit yet — record a verdict below.

Start a review

verdict

.github/workflows/CD.yml @@ -7,6 +7,14 @@ paths: - "crates/git-ents/**" - "crates/git-ents-server/**" + - "crates/git-ents-core/**" + - "crates/git-anchor/**" + - "crates/git-comment/**" + - "crates/git-effect/**" + - "crates/git-member/**" + - "crates/git-signed-push/**" + - "crates/git-store/**" + - "crates/git-toolchain/**" - ".config/fly.toml" - "Cargo.toml" - "Cargo.lock"