diff --git a/scripts/templates/action-yml.ts b/scripts/templates/action-yml.ts index 31251eb..c1fec04 100644 --- a/scripts/templates/action-yml.ts +++ b/scripts/templates/action-yml.ts @@ -46,7 +46,10 @@ function processInputs(inputs: Record) { for (const publisher of publishers) { for (const [name, input] of nestedInputs) { - inputs[`${publisher}-${name}`] = { ...input }; + inputs[`${publisher}-${name}`] = { + ...input, + default: "${undefined}" + }; } }