Fix invalid time pattern for "every hour" example (#18100)

The example for the "every hour" trigger uses an invalid time pattern format - minutes: "/60" - which throws the following error.
 
> Invalid config for [automation]: must be a value between 0 and 59 for dictionary value @ data['minutes']
 
Propose replacing it with - hours: "*"
This commit is contained in:
Kyle Hasegawa 2021-06-07 23:09:47 +09:00 committed by GitHub
parent ffdf9e5ba3
commit 22fc6e442c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -148,7 +148,7 @@ automation:
- alias: "Update OpenUV every hour (24 of 50 calls per day)"
trigger:
platform: time_pattern
minutes: "/60"
hours: "*"
action:
service: openuv.update_data
```