File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -152,8 +152,7 @@ export async function deployStack(
152152 changeSetName : string ,
153153 noEmptyChangeSet : boolean ,
154154 noExecuteChangeSet : boolean ,
155- noDeleteFailedChangeSet : boolean ,
156- includeNestedStacksChangeSet : boolean = false
155+ noDeleteFailedChangeSet : boolean
157156) : Promise < string | undefined > {
158157 const stack = await getStack ( cfn , params . StackName )
159158
@@ -203,7 +202,7 @@ export async function deployStack(
203202 RoleARN : params . RoleARN ,
204203 RollbackConfiguration : params . RollbackConfiguration ,
205204 NotificationARNs : params . NotificationARNs ,
206- IncludeNestedStacks : params . IncludeNestedStacks ,
205+ IncludeNestedStacks : params . IncludeNestedStacksChangeSet ,
207206 Tags : params . Tags
208207 }
209208 } ,
Original file line number Diff line number Diff line change @@ -106,9 +106,12 @@ export async function run(): Promise<void> {
106106 required : false
107107 } )
108108 )
109- const includeNestedStacksChangeSet = ! ! + core . getInput ( 'include-nested-stacks-change-set' , {
110- required : false
111- } )
109+ const includeNestedStacksChangeSet = ! ! + core . getInput (
110+ 'include-nested-stacks-change-set' ,
111+ {
112+ required : false
113+ }
114+ )
112115
113116 // Configures proxy
114117 const agent = configureProxy ( httpProxy )
You can’t perform that action at this time.
0 commit comments