I have the following automation, which should be triggered by two ios actions.
alias: Garage - Open/close garage/gate via Apple Action
id: garage_apple_action
trigger:
- id: garage
platform: event
event_type: ios.action_fired
event_data:
actionName: Garage
- id: gate
platform: event
event_type: ios.action_fired
event_data:
actionName: Gate
condition: []
action:
- choose:
- conditions:
- condition: trigger
id: garage
sequence:
- service: cover.toggle
entity_id: cover.garage
- conditions:
- condition: trigger
id: gate
sequence:
- service: cover.toggle
entity_id: cover.gate
default: []
I noticed that it does open and close the gate correctly, but the garage is not triggered.
Checking the trace gave me the following error message:
Error rendering graph. Please download trace and share with the developers.
Can someone spot an error in the automation?