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
View File
@@ -9,7 +9,6 @@ inputs:
effort:
description: "Effort level: mini (fast), auto (default), max (most capable)"
required: false
default: "auto"
agent:
description: "Agent to use: claude, codex, gemini, cursor, opencode"
required: false
+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,
+1 -1
View File
@@ -71,7 +71,7 @@ function resolveCwd(cwd: string | null | undefined): string | null {
export function resolvePayload(repoSettings: RepoSettings) {
const inputs = Inputs.assert({
prompt: core.getInput("prompt", { required: true }),
effort: core.getInput("effort") || "auto",
effort: core.getInput("effort") || undefined,
agent: core.getInput("agent") || null,
cwd: core.getInput("cwd") || null,
web: core.getInput("web") || undefined,