feat(workflows): dispatch eels runs when client images update - #81
Open
spencer-tb wants to merge 15 commits into
Open
feat(workflows): dispatch eels runs when client images update#81spencer-tb wants to merge 15 commits into
spencer-tb wants to merge 15 commits into
Conversation
spencer-tb
marked this pull request as draft
August 13, 2026 17:55
spencer-tb
marked this pull request as ready for review
August 18, 2026 18:03
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The eels simulators now run on client image updates, instead of on daily crons — the eels crons are removed, and git-source builds become a manual-dispatch-only option.
Supersedes #82: with the crons gone there is no schedule path to flip to docker — every dispatch (watcher or manual) already defaults to the prebuilt pandaops images.
When does a run happen?
client_source=gitfor tip-of-branch builds — that's now the only way git builds run.Questions you'll have
Mechanism
A watcher workflow ticks every ~20 minutes and derives its watch plan from the workflow files themselves (
.github/scripts/derive-watch-plan.py). Image digests come from registry manifest HEADs (Docker Hub + ghcr.io; not counted toward Hub pull limits) and are compared againsts3:hive-results/image-digests.json. Dispatches useclient_source=docker(single env knob to flip to git builds).Pins all four devnet workflows' matrix concurrency groups to constant prefixes so all runs share the per-client+simulator queue. (The old
${{ github.head_ref || inputs }}groups render the inputs object as the literalObject/empty, so different trigger types never shared a queue and the two quick workflows silently shared each other's.)With the schedules gone, the now-dead schedule-only paths are removed too: the full workflows' dual prepare steps collapse to one, the quick workflows'
|| 'git'fallbacks go, andclient_sourcedefaults todockereverywhere.generic.yamlalso drops its unusedworkflow_artifact_uploaddispatch input (nothing passed it) — it had 11 inputs against GitHub's limit of 10, which broke UI dispatching.