Clean up actions and payloads (#98)

* Clean up actions and payloads

* Clean up action

* Cleanup
This commit is contained in:
Colin McDonnell
2026-01-16 07:16:25 +00:00
committed by pullfrog[bot]
parent 5c60791b34
commit 9e019d89d2
68 changed files with 28182 additions and 306308 deletions
+3 -9
View File
@@ -1,21 +1,15 @@
#!/usr/bin/env node
/**
* entry point for pullfrog/pullfrog - main action
* entry point for pullfrog/pullfrog - unified action
*/
import * as core from "@actions/core";
import { Inputs, main } from "./main.ts";
import { main } from "./main.ts";
async function run(): Promise<void> {
try {
const inputs = Inputs.assert({
prompt: core.getInput("prompt", { required: true }),
effort: core.getInput("effort") || "auto",
cwd: core.getInput("cwd") || null,
});
const result = await main(inputs);
const result = await main(core);
if (!result.success) {
throw new Error(result.error || "Agent execution failed");