Fix effort defaulting bug

This commit is contained in:
Colin McDonnell
2026-01-19 17:16:45 +00:00
committed by pullfrog[bot]
parent 995b39a122
commit 485c76457f
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -138220,7 +138220,7 @@ function resolveCwd(cwd2) {
function resolvePayload(repoSettings) {
const inputs = Inputs.assert({
prompt: core4.getInput("prompt", { required: true }),
effort: core4.getInput("effort") || "auto",
effort: core4.getInput("effort") || void 0,
agent: core4.getInput("agent") || null,
cwd: core4.getInput("cwd") || null,
web: core4.getInput("web") || void 0,