with LinearB and Pencil Spaces?
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
The 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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pencil_spaces: {
type: "app",
app: "pencil_spaces",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.pencil_spaces.$auth.api_url}users`,
headers: {
Authorization: `Bearer ${this.pencil_spaces.$auth.api_key}`,
},
})
},
})