mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 09:17:06 +00:00
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:
parent
ffdf9e5ba3
commit
22fc6e442c
@ -148,7 +148,7 @@ automation:
|
|||||||
- alias: "Update OpenUV every hour (24 of 50 calls per day)"
|
- alias: "Update OpenUV every hour (24 of 50 calls per day)"
|
||||||
trigger:
|
trigger:
|
||||||
platform: time_pattern
|
platform: time_pattern
|
||||||
minutes: "/60"
|
hours: "*"
|
||||||
action:
|
action:
|
||||||
service: openuv.update_data
|
service: openuv.update_data
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user