This repository was archived by the owner on May 13, 2026. It is now read-only.
ci: remove notify-downstream dispatcher (downstream cascade is cron now) - #680
Merged
Conversation
Both downstream consumers (schema_service, fold_db_node) moved to 2-hour cron-based bump workflows: - EdgeVector/fold_db_node#798 — fold_db_node's bump-schema-service.yml switched from `repository_dispatch` to `schedule: "0 */2 * * *"`. - EdgeVector/schema_service (sibling PR) — schema_service's bump-fold-db.yml made the same switch. The `fold_db-main-bump` dispatch this workflow fires no longer has a listener (schema_service no longer subscribes), so the workflow is dead code. Removing it. Why the cascade moved off dispatch: per-merge bumps were superseding each other in downstream merge queues before they could land, burning CI cycles on PRs that never merged. Hourly-ish batching coalesces multiple upstream merges into one bump cycle. Trade-off: end-to-end cascade lag grows from ~10-15 min to up to ~4h (2h schema_service hop + 2h fold_db_node hop). Force-flush via `gh workflow run bump-fold-db.yml -R EdgeVector/schema_service` and `gh workflow run bump-schema-service.yml -R EdgeVector/fold_db_node`. CLAUDE.md "Bump cascade (downstream)" section updated to match. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Both downstream consumers moved off per-merge `repository_dispatch` to a 2-hour cron:
The `fold_db-main-bump` dispatch this workflow fires no longer has a listener once schema_service's PR lands. Removing the dead dispatcher.
Why the cascade moved off dispatch
Per-merge bumps were superseding each other in downstream merge queues before they could land, burning a full CI cycle on PRs that never merged. Hourly-ish batching coalesces multiple upstream merges into one bump cycle.
Trade-offs
Changes
Test plan