What Prop Settings Should I Use for a Custom GitHub Source When Instantiating Via API?

It sounds like you’re asking whether you can pass code directly to a Pipedream code step. While you can’t pass the code itself as a prop, you can pass data to code steps using props, which can then be used within your code. This allows you to make your code steps more reusable and flexible. Here’s an example of how you can pass a string prop to a code step: export default defineComponent({ props: { firstName: { type: "string", label: "Your first name", default: "Dylan", }, }, async run({ steps, $ }) { console.log(`Hello ${this.firstName}, congrats on crafting your first prop!`); }, }); In this example, the firstName prop is defined and can be set from the workflow builder. The value of firstName is then used within the run method. For more details on passing props to code steps, you can refer to the Node.js code step documentation. If you have a specific use case or need further clarification, please let me know!