v106

OpenAPI 3.1.0raw.githubusercontent.com2026-08-02160524464.6 KB
Automations

List automations

Returns all configured automation definitions.

get/api/v1/automations

Response

Automation definitions

Example response

{
  "data": [
    {
      "id": "nightly-deps",
      "revision": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
      "name": "Nightly dependency update",
      "description": "Keeps dependencies fresh.",
      "target": {
        "repository": "fabro-sh/fabro",
        "ref": "main",
        "workflow": "dependency-update"
      },
      "triggers": [
        {
          "id": "manual",
          "enabled": true
        }
      ]
    }
  ]
}