diff --git a/source/_docs/automation/trigger.markdown b/source/_docs/automation/trigger.markdown index 0f5b7355139..fd9d06520ae 100644 --- a/source/_docs/automation/trigger.markdown +++ b/source/_docs/automation/trigger.markdown @@ -148,3 +148,20 @@ automation: # Event is either enter or leave event: enter # or "leave" ``` + + +### {% linkable_title Multiple triggers %} + +When your want your automation rule to have multiple triggers, just prefix the first line of each trigger with a dash (-) and indent the lines following accordingly. Whenever one of the triggers fires, your rule is executed. + +```yaml +automation: + trigger: + # first trigger + - platform: time + minutes: 5 + seconds: 00 + # our second trigger is the sunset + - platform: sun + event: sunset +```