Skip to content

Commit

Permalink
fix: make ChangesetName optional aws-actions#112
Browse files Browse the repository at this point in the history
  • Loading branch information
eg-cmd authored and kddejong committed Dec 13, 2023
1 parent 7110e3d commit bc9996e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,11 @@ export async function run(): Promise<void> {
required: false
})
)
const changeSetName = core.getInput('change-set-name', {
required: false
})
const changeSetName = parseString(
core.getInput('change-set-name', {
required: false
})
)

// Configures proxy
configureProxy(httpProxy)
Expand Down

0 comments on commit bc9996e

Please sign in to comment.