From 22fc6e442ca6c630a84640d6726b2417794eac29 Mon Sep 17 00:00:00 2001 From: Kyle Hasegawa Date: Mon, 7 Jun 2021 23:09:47 +0900 Subject: [PATCH] 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: "*" --- source/_integrations/openuv.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/openuv.markdown b/source/_integrations/openuv.markdown index d7406967a16..f52eeb77d00 100644 --- a/source/_integrations/openuv.markdown +++ b/source/_integrations/openuv.markdown @@ -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 ```