You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/getting-started/automation-trigger.markdown
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ automation:
113
113
platform: time
114
114
# Matches every hour at 5 minutes past whole
115
115
minutes: 5
116
-
seconds: 0
116
+
seconds: 00
117
117
118
118
automation 2:
119
119
trigger:
@@ -127,8 +127,11 @@ automation 3:
127
127
platform: time
128
128
# You can also match on interval. This will match every 5 minutes
129
129
minutes: '/5'
130
-
seconds: 0
130
+
seconds: 00
131
131
```
132
+
<p class='note warning'>
133
+
Rememebr that if you are using matching to include both `minutes` and `seconds`. Without `seconds`, your automation will trigger 60 times during the matching minute.
0 commit comments