The Software Delivery Management Platform for engineering leaders to streamline operations and align R&D investments to deliver business results
Go to siteThe LinearB API serves as a bridge between LinearB's project management insights and your preferred platforms, offering the ability to automate workflows, generate reports, and trigger actions based on project metrics. With Pipedream, these capabilities can be harnessed to create custom workflows that respond to events within LinearB, such as changes in project status or team performance metrics. The data can be pushed to various services, such as communication tools, databases, or other project management apps to enhance visibility and coordination across your team.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
linearb: {
type: "app",
app: "linearb",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://public-api.linearb.io/api/v1/deployments`,
headers: {
"x-api-key": `${this.linearb.$auth.api_key}`,
},
})
},
})
Sync LinearB Project Updates to Slack: Automatically post updates in a Slack channel whenever a new project is created or a project's status changes in LinearB. This keeps the entire team aligned and promptly informed about the project's progress.
Create LinearB Metrics Dashboard: Use the LinearB API to fetch key performance metrics and pipe them into a Google Sheets document on a regular schedule. This allows teams to maintain a live dashboard that tracks project health and team productivity without manual data entry.
Trigger Incident Management on Status Change: Set up a workflow that monitors project status changes in LinearB, and triggers an incident in PagerDuty when certain thresholds are met (like a project falling behind schedule). This ensures that stakeholders are alerted and can take immediate action to address project risks.
Emit new event when a new deploy is created in LinearB. See the documentation
Create a new incident within the LinearB platform. See the documentation
LinearB uses API keys for authentication. When you connect your LinearB account, Pipedream securely stores the keys so you can easily authenticate to LinearB APIs in both code and no-code steps.