with Epic Games and Sourceforge?
Emit new event when a repository receives a new commit.
Retrieves a list of projects in an account. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
epic_games: {
type: "app",
app: "epic_games",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.epicgames.dev/epic/id/v2/accounts`,
headers: {
Authorization: `Bearer ${this.epic_games.$auth.oauth_access_token}`,
},
params: {
accountId: `your_account_id`,
},
})
},
})
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}`,
},
})
},
})