linear.getWorkflowState loads state metadata and its owning team.
automations/get-linear-state.automation.ts
workflowStateId. Optional second argument { account } defaults to the project binding. Returns Signal<LinearWorkflowState>.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get a Linear workflow state by ID.
linear.getWorkflowState loads state metadata and its owning team.
import { automation, onDashboardRun } from "automate.ax"
import { linear } from "automate.ax/linear"
export default automation("Get Linear state", () => {
onDashboardRun({ title: "Get Linear state" })
linear.getWorkflowState({ workflowStateId: "state-uuid" })
})
workflowStateId. Optional second argument { account } defaults to the project binding. Returns Signal<LinearWorkflowState>.