Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.automa.app/llms.txt

Use this file to discover all available pages before exploring further.

task
Task
The task object containing details about the task that was created.
repo
Repository
The repository on which the tasks is to be implemented.
org
Organization
The organization where the task was created.
{
  "type": "task.created",
  "data": {
    "task": {
      "id": 2,
      "token": "abc123xyz",
      "title": "Ignore disabled repos when trying to auto-select the first repo option in task creation",
      "items": [
        {
          "type": "origin",
          "data": {
            "orgId": 1
          }
        },
        {
          "type": "message",
          "data": {
            "content": "In the file named `TaskCreate.tsx`, when we are trying to use `setValue` on the first repository option, we should ignore disabled repository options."
          }
        }
      ]
    },
    "repo": {
      "id": 1,
      "name": "monorepo",
      "is_private": true
    },
    "org": {
      "id": 1,
      "name": "automa",
      "provider_type": "github"
    }
  }
}