Skip to content

Commit

Permalink
feat(params): Fix hardcoded dryrun input
Browse files Browse the repository at this point in the history
  • Loading branch information
centrumek committed Oct 10, 2023
1 parent 0f37d13 commit 125b775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const validateDevcardIdAsUUID = (devcard_id: string): boolean => {
const filename = core.getInput('commit_filename')
const email = core.getInput('committer_email')
const name = core.getInput('committer_name')
const dryrun = false
const dryrun = core.getBooleanInput('dryrun')

// throw an error if filename is empty
if (!filename || filename.length === 0) {
Expand Down

0 comments on commit 125b775

Please sign in to comment.