Skip to content

Commit f5bc664

Browse files
committed
(fix) fix typo chageset -> changeset
1 parent e52fd96 commit f5bc664

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/deploy.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export async function updateStack(
5555
stack: Stack,
5656
params: CreateChangeSetInput,
5757
noEmptyChangeSet: boolean,
58-
noExecuteChageSet: boolean,
58+
noExecuteChangeSet: boolean,
5959
noDeleteFailedChangeSet: boolean
6060
): Promise<string | undefined> {
6161
core.debug('Creating CloudFormation Change Set')
@@ -79,7 +79,7 @@ export async function updateStack(
7979
)
8080
}
8181

82-
if (noExecuteChageSet) {
82+
if (noExecuteChangeSet) {
8383
core.debug('Not executing the change set')
8484
return stack.StackId
8585
}
@@ -123,7 +123,7 @@ export async function deployStack(
123123
cfn: aws.CloudFormation,
124124
params: CreateStackInput,
125125
noEmptyChangeSet: boolean,
126-
noExecuteChageSet: boolean,
126+
noExecuteChangeSet: boolean,
127127
noDeleteFailedChangeSet: boolean
128128
): Promise<string | undefined> {
129129
const stack = await getStack(cfn, params.StackName)
@@ -158,7 +158,7 @@ export async function deployStack(
158158
}
159159
},
160160
noEmptyChangeSet,
161-
noExecuteChageSet,
161+
noExecuteChangeSet,
162162
noDeleteFailedChangeSet
163163
)
164164
}

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export async function run(): Promise<void> {
4646
const noEmptyChangeSet = !!+core.getInput('no-fail-on-empty-changeset', {
4747
required: false
4848
})
49-
const noExecuteChageSet = !!+core.getInput('no-execute-changeset', {
49+
const noExecuteChangeSet = !!+core.getInput('no-execute-changeset', {
5050
required: false
5151
})
5252
const noDeleteFailedChangeSet = !!+core.getInput(
@@ -119,7 +119,7 @@ export async function run(): Promise<void> {
119119
cfn,
120120
params,
121121
noEmptyChangeSet,
122-
noExecuteChageSet,
122+
noExecuteChangeSet,
123123
noDeleteFailedChangeSet
124124
)
125125
core.setOutput('stack-id', stackId || 'UNKNOWN')

0 commit comments

Comments
 (0)