Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Linear Trigger

The daemon accepts Linear webhooks at /webhooks/linear (or any request carrying a linear-event header).

Event string format

Linear sends type and optionally action in the JSON payload:

payload.type:   Issue
payload.action: create
→ event string: "Issue.create"
 
payload.type:   Issue
(no action)
→ event string: "Issue"

Supported events

Event patternWhen
Issue.createNew issue created
Issue.updateIssue updated
Comment.createComment posted on an issue

Example

# Fire when a new issue is created in a specific team
trigger:
  linear:
    - Issue.create
  filter:
    when:
      data.team.key: HAR

Prompt variables

VariableValue
event.data.titleIssue title
event.data.descriptionIssue description
event.data.team.keyTeam key (e.g. HAR)
event.data.priorityIssue priority

See also

  • Filters — narrow which events reach this pipeline