mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +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)"
|
||||
trigger:
|
||||
platform: time_pattern
|
||||
minutes: "/60"
|
||||
hours: "*"
|
||||
action:
|
||||
service: openuv.update_data
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user