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 committed Nov 3, 2023
1 parent 018c7fd commit 4459e53
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 4459e53

Please sign in to comment.