Short answer: Drop the "GitHub → New GitHub Event" trigger on your workflow canvas, add filters if you want them, and publish. It fires within seconds of the event in GitHub, not on a polling schedule.
Drop it on the canvas. Configure a couple of fields. Publish.
You don’t need to read this. Tiny Command auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.
{"raw": {"ref": "refs/heads/main","after": "def5678","repository": {"full_name": "octocat/hello-world"}},"ref": "refs/heads/main","pusher_name": "octocat","sender_login": "octocat","head_commit_id": "def5678","repository_url": "https://github.com/octocat/hello-world","head_commit_message": "Fix login bug","repository_full_name": "octocat/hello-world"}
Every field below can be referenced by name in any action or filter that comes after this trigger.
| Field | Type | Example |
|---|---|---|
| raw | object | { … } |
| raw.ref | string | "refs/heads/main" |
| raw.after | string | "def5678" |
| raw.repository | object | { … } |
| raw.repository.full_name | string | "octocat/hello-world" |
| ref | string | "refs/heads/main" |
| pusher_name | string | "octocat" |
| sender_login | string | "octocat" |
| head_commit_id | string | "def5678" |
| repository_url | string | "https://github.com/octocat/hello-world" |
| head_commit_message | string | "Fix login bug" |
| repository_full_name | string | "octocat/hello-world" |
One trigger. 23+ downstream actions. Zero glue.