events.iterate.com

Event type

events.iterate.com/repo/github-import-started

The repo processor durably began a GitHub import attempt — journaled BEFORE the sync body runs, so an attempt that dies with its incarnation is visibly owed.

Payload schema

branchstring

The branch to import.

requestIdstring

The obligation's identity: the coordinates (path:offset) of the webhook event that opened it — no synthetic ids.

requestedCommitOidstring

The GitHub head the push delivery announced.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "branch": {
      "type": "string",
      "minLength": 1,
      "description": "The branch to import."
    },
    "requestId": {
      "type": "string",
      "minLength": 1,
      "description": "The obligation's identity: the coordinates (path:offset) of the webhook event that opened it — no synthetic ids."
    },
    "requestedCommitOid": {
      "type": "string",
      "minLength": 1,
      "description": "The GitHub head the push delivery announced."
    }
  },
  "required": [
    "branch",
    "requestId",
    "requestedCommitOid"
  ]
}