Hi @fs,
Have you solved your problem?
Do you want to trigger the flow only from 8am and 5pm local time?
Write this expression within the condition of the trigger:
@and(
GreaterOrequals(
convertTimeZone(utcnow(), 'UTC', 'Central Standard Time', 'HH:mm'),//Here is your local time
formatdatetime('8:00','HH:mm')
),
lessOrEquals(
convertTimeZone(utcnow(), 'UTC', 'Central Standard Time', 'HH:mm'),
formatdatetime('17:00','HH:mm')
)
)