Skip to content

Commit 982e8c7

Browse files
authored
Merge pull request #43 from JimAllanson/fix-typo
(fix) fix typo chageset -> changeset
2 parents 03d6f6e + f5bc664 commit 982e8c7

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
}
@@ -124,7 +124,7 @@ export async function deployStack(
124124
cfn: aws.CloudFormation,
125125
params: CreateStackInput,
126126
noEmptyChangeSet: boolean,
127-
noExecuteChageSet: boolean,
127+
noExecuteChangeSet: boolean,
128128
noDeleteFailedChangeSet: boolean
129129
): Promise<string | undefined> {
130130
const stack = await getStack(cfn, params.StackName)
@@ -159,7 +159,7 @@ export async function deployStack(
159159
}
160160
},
161161
noEmptyChangeSet,
162-
noExecuteChageSet,
162+
noExecuteChangeSet,
163163
noDeleteFailedChangeSet
164164
)
165165
}

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)