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