9e019d89d2
* Clean up actions and payloads * Clean up action * Cleanup
12 lines
349 B
TypeScript
12 lines
349 B
TypeScript
import type { Payload } from "../external.ts";
|
|
|
|
export default {
|
|
"~pullfrog": true,
|
|
agent: null,
|
|
prompt:
|
|
"List all files in the current directory, then create a file called dynamic-test.txt with the content 'This was loaded from a TypeScript file!', then delete it.",
|
|
event: {
|
|
trigger: "workflow_dispatch",
|
|
},
|
|
} satisfies Payload;
|