Forms as flexible as code. We help product teams build best-in-class forms.
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
Find issues and pull requests by state and keyword. See docs here
Create or update a file in a repository. This will replace an existing file. See docs here
With Feathery, you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
feathery: {
type: "app",
app: "feathery",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.feathery.io/api/user/`,
headers: {
"Token": `${this.feathery.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})