Create

yaml
type: "io.kestra.plugin.linear.issues.Create"

Opens issue in Linear

Examples

yaml
id: "create"
type: "io.kestra.plugin.linear.issues.Create"
- id: linear
  type: io.kestra.plugin.linear.issues.Create
  token: your_api_token
  team: MyTeamName
  title: Workflow failed
  description: "{{ execution.id }} has failed on {{ taskrun.startDate }}. See the link below for more details"
  labels:
    - Bug
    - Workflow

Properties

description

  • Type: string
  • Dynamic: ✔️
  • Required:

Issue description

labels

  • Type: array
  • SubType: string
  • Dynamic: ✔️
  • Required:

Names of labels

team

  • Type: string
  • Dynamic: ✔️
  • Required:

Team name

title

  • Type: string
  • Dynamic: ✔️
  • Required:

Issue title

token

  • Type: string
  • Dynamic: ✔️
  • Required:

Linear API token

Outputs

isSuccess

  • Type: boolean
  • Dynamic:
  • Required:

Shows whether request was successful

issueId

  • Type: string
  • Dynamic:
  • Required:

Issue id

Definitions

Was this page helpful?