What Integrations Does Pipedream Have?

This topic was automatically generated from Slack. You can find the original thread here.

what integrations does pipedream have

Pipedream offers integrations with over 1,000 applications. These integrations allow you to connect and automate workflows between popular apps and services, such as: - Slack - Google Sheets - Snowflake - And many more You can use pre-built components to quickly send messages, add rows to spreadsheets, move data between systems, and much more. Pipedream also lets you run custom Node.js, Python, Golang, or Bash code for advanced logic. To explore the full list of available integrations, you can search for apps directly within the Pipedream UI. If you need an integration that doesn’t exist yet, you can request it via the integration request form. If you have a specific app in mind, let me know and I can provide more details on its integration!

write me a custom code step for listing issues with github

 import { axios } from "@pipedream/platform";  export default defineComponent({   props: {     github: {       type: "app",       app: "github",     },     owner: {       type: "string",       label: "Repository Owner",       description: "The owner of the GitHub repository (username or organization)",     },     repo: {       type: "string",       label: "Repository Name",       description: "The name of the GitHub repository",     },   },   async run({ steps, $ }) {     const url = `https://api.github.com/repos/${this.owner}/${this.repo}/issues`;     const issues = await axios($, {       method: "get",       url,       headers: {         Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,         "X-GitHub-Api-Version": "2022-11-28",       },     });     return issues;   }, }); 
```  ****How to use:**** - Add this as a Node.js code step in your Pipedream workflow. - Connect your GitHub account when prompted. - Enter the repository owner and name. - The step will return a list of issues for the specified repository.