I feel like I have everything set up correctly, but I never get an option to “take Action” I get an alert, but no buttons. Here is all my config
Automations
- alias: 'Cancel Garage Alert'
trigger:
platform: event
event_type: ios.notification_action_fired
event_data:
actionName: CANCEL_GARAGE_ALERT
action:
service: homeassistant.turn_off
entity_id: alert.garage_door
- alias: 'Close Garage Door'
trigger:
platform: event
event_type: ios.notification_action_fired
event_data:
actionName: CLOSE_GARAGE
action:
- service: cover.close_cover
entity_id: cover.garage_door_opener
Here’s the alet
garage_door:
name: Garage is open
done_message: Garage is closed
entity_id: cover.garage_door_opener
state: 'open'
repeat:
- 10
- 30
can_acknowledge: True
skip_first: True
notifiers:
- ios_pauls_iphone
- ios_tracys_iphone
and here’s the ios config
ios:
push:
categories:
- name: Garage Alert
identifier: 'garage_alert'
actions:
- identifier: 'CANCEL_GARAGE_ALERT'
title: 'Cancel Alert'
- identifier: 'CLOSE_GARAGE'
title: 'Close Garage'
I get the alert, but when I unlock my phone or open the app, its gone.