events.iterate.com

Event type

events.iterate.com/project/worker-update-failed

A post-creation config repo commit deterministically failed to build as the default project worker. A later config commit can repair it; transient availability remains open for redelivery.

Payload schema

commitOidstring

The config-repo commit that triggered the failed readiness check.

errorstring

The deterministic worker build failure.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "commitOid": {
      "type": "string",
      "minLength": 1,
      "description": "The config-repo commit that triggered the failed readiness check."
    },
    "error": {
      "type": "string",
      "minLength": 1,
      "description": "The deterministic worker build failure."
    }
  },
  "required": [
    "commitOid",
    "error"
  ]
}