Hi @Anonymous,
The UTCNow() function currently could only return the time in UTC time zone, and Microsoft Flow as an Online service, currently could only work with time in UTC time zone.
If you would like it to display in local time zone, then please take use of the Addhours funciton to deal with the time lag.
For example, if your time zone is PST, then to display the time correctly, you would need to take use of expression as below for the UTCNow():
AddHours(UTCNow(),-8)
For how to take use of expression, check the blog below:
Use expressions in flow actions
Please refer to the Working with dates part.
Regards,
Michael