Runbook — Manual run

Manual is the “someone pressed the button” trigger — a runbook step, a one-off backfill. Deployed, it runs once per manual kick; in Test it fires immediately.

What’s inside

2 nodes — every type links to its full reference page.

StepNodeType
Run now Manual Trigger input.manual
Runbook Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/runbook-manual-run.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Runbook — Manual run"
  3. Any credentials the nodes need are ${credential.…} references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 2 node types)
{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Runbook — Manual run",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "go",
      "type": "input.manual",
      "label": "Run now",
      "category": "trigger",
      "config": {},
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Runbook",
      "category": "utility",
      "config": {
        "message": "runbook step executed at {{ $now }}"
      },
      "position": {
        "x": 530,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "go",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "go"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "Manual is the “someone pressed the button” trigger — a runbook step, a one-off backfill. Deployed, it runs once per manual kick; in Test it fires immediately."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: runbook-manual-run.json.