Fix effort defaulting bug
This commit is contained in:
committed by
pullfrog[bot]
parent
995b39a122
commit
485c76457f
@@ -9,7 +9,6 @@ inputs:
|
|||||||
effort:
|
effort:
|
||||||
description: "Effort level: mini (fast), auto (default), max (most capable)"
|
description: "Effort level: mini (fast), auto (default), max (most capable)"
|
||||||
required: false
|
required: false
|
||||||
default: "auto"
|
|
||||||
agent:
|
agent:
|
||||||
description: "Agent to use: claude, codex, gemini, cursor, opencode"
|
description: "Agent to use: claude, codex, gemini, cursor, opencode"
|
||||||
required: false
|
required: false
|
||||||
|
|||||||
@@ -138220,7 +138220,7 @@ function resolveCwd(cwd2) {
|
|||||||
function resolvePayload(repoSettings) {
|
function resolvePayload(repoSettings) {
|
||||||
const inputs = Inputs.assert({
|
const inputs = Inputs.assert({
|
||||||
prompt: core4.getInput("prompt", { required: true }),
|
prompt: core4.getInput("prompt", { required: true }),
|
||||||
effort: core4.getInput("effort") || "auto",
|
effort: core4.getInput("effort") || void 0,
|
||||||
agent: core4.getInput("agent") || null,
|
agent: core4.getInput("agent") || null,
|
||||||
cwd: core4.getInput("cwd") || null,
|
cwd: core4.getInput("cwd") || null,
|
||||||
web: core4.getInput("web") || void 0,
|
web: core4.getInput("web") || void 0,
|
||||||
|
|||||||
+1
-1
@@ -71,7 +71,7 @@ function resolveCwd(cwd: string | null | undefined): string | null {
|
|||||||
export function resolvePayload(repoSettings: RepoSettings) {
|
export function resolvePayload(repoSettings: RepoSettings) {
|
||||||
const inputs = Inputs.assert({
|
const inputs = Inputs.assert({
|
||||||
prompt: core.getInput("prompt", { required: true }),
|
prompt: core.getInput("prompt", { required: true }),
|
||||||
effort: core.getInput("effort") || "auto",
|
effort: core.getInput("effort") || undefined,
|
||||||
agent: core.getInput("agent") || null,
|
agent: core.getInput("agent") || null,
|
||||||
cwd: core.getInput("cwd") || null,
|
cwd: core.getInput("cwd") || null,
|
||||||
web: core.getInput("web") || undefined,
|
web: core.getInput("web") || undefined,
|
||||||
|
|||||||
Reference in New Issue
Block a user