Skip to content

Commit

Permalink
Removed default values for nested inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kir-Antipov committed Aug 21, 2022
1 parent b6dd854 commit 7f684f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/templates/action-yml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ function processInputs(inputs: Record<string, ActionInput>) {

for (const publisher of publishers) {
for (const [name, input] of nestedInputs) {
inputs[`${publisher}-${name}`] = { ...input };
inputs[`${publisher}-${name}`] = {
...input,
default: "${undefined}"
};
}
}

Expand Down

0 comments on commit 7f684f1

Please sign in to comment.