Worked examples.
Each recipe is a copy-paste starting point for wiring a real CI use case
onto FlareDispatch — adjust the inputs and drop it into your repo. Every
recipe is a typed Effect-TS run (*.run.ts); the wiring —
Webhook, Action, or
Schedule — is a dimension, not a category. The chips on
each card show which wirings it supports, recommended first.
Event-driven recipes also surface a baseline on their page — the full GitHub Actions workflow you'd have to maintain to do the same job without FlareDispatch — so the contrast is in plain sight.
Event-driven
Fires on a GitHub event (a PR push, a deploy). Wire it as Webhook (the App fires the run directly — no ci.yml) or Action (a ci.yml step), whichever fits; both post back as a Check Run. Webhook is shipped where the run's inputs come from the event itself.
Configurable single- or multi-agent code review on every PR — plus a nightly sweep.
Webhook Action Schedule Browser testsPlaywright e2e suite, sharded across the browser pool.
Action Webhook Schedule pattern Test matrixSame command fanned out across N shards.
Action Webhook pattern CDP acceptanceBoot an app, drive it over CDP, assert on observations.
Action Webhook pattern Product demoAI-driven walkthrough video of a deployed site, with a per-story summary.
Action Schedule Webhook pattern Security scanDependency / vulnerability scan, on PR and weekly.
Action Schedule pattern Deploy smokeHit critical URLs after a successful deploy.
Webhook ActionWall-clock
Fires on a Cloudflare Cron Trigger — no GitHub event, no GHA minutes, no workflow file. The cron expression also goes in wrangler.jsonc triggers.crons; a GHA on: schedule step is the GHA-native alternative.
Nightly Playwright suite across your deployed environments.
Schedule Action pattern Release notesWeekly release notes, drafted then published behind a human gate.
Schedule Scheduled deps auditNightly dependency audit across every installed repo.
Schedule Spec drift → draft PRDaily spec/implementation drift detection — files the reconciling spec edits as a draft PR.
Schedule CI triage → draft PRDaily triage of GitHub Actions + Cloudflare deploy failures — files the write-up as a draft PR.
Schedule