with Sourceforge and Mumble?
Emit new event when a repository receives a new commit.
The Sourceforge API provides programmable access to Sourceforge's repository hosting and collaborative features, allowing for automation of project management, file distribution, and reporting tasks. With this API on Pipedream, developers can create workflows to streamline software development processes, enhance collaboration, and integrate with other services for a more robust development lifecycle.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sourceforge: {
type: "app",
app: "sourceforge",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://sourceforge.net/rest/u/${this.sourceforge.$auth.username}/profile`,
headers: {
Authorization: `Bearer ${this.sourceforge.$auth.bearer_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mumble: {
type: "app",
app: "mumble",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.mumble.co.il/mumbleapi/get-labels`,
headers: {
"mumble-api-key": `${this.mumble.$auth.api_key}`,
},
})
},
})