Skip to content

Commit

Permalink
fix: verbose-logging bool
Browse files Browse the repository at this point in the history
  • Loading branch information
jdcargile committed Feb 21, 2024
1 parent f82c88b commit ac7347c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ async function run(): Promise<void> {
core.getInput('notification-summary') || 'GitHub Action Notification'
const notificationColor = core.getInput('notification-color') || '0b93ff'
const timezone = core.getInput('timezone') || 'UTC'
const verboseLogging =
core.getInput('verbose-logging').toLowerCase() === 'true'
const verboseLogging = core.getInput('verbose-logging') == 'true'
const timestamp = moment()
.tz(timezone)
.format('dddd, MMMM Do YYYY, h:mm:ss a z')
Expand Down

0 comments on commit ac7347c

Please sign in to comment.