I’m having some issues on my S10 running One UI 2, I’m able to send the notification with a button, but when I select the button the notification just gets dismissed (notification shade minimizes) and the automation does not run.
This shows up fine:
action:
- service: notify.mobile_app_ryans10
data:
title: "Vacuum Scheduled"
message: "Vacuum starting in 30 mins"
data:
actions:
- action: "dont_vacuum" # The key you are sending for the event
title: "Don't vacuum today" # The button title
but nothing happens when I hit the button to try to run this:
- alias: Skip vacuum today
trigger:
- event_data:
action: dontvacuum
event_type: mobile_app_notification_action
platform: event
action:
entity_id: automation.turn_off
service: automation.vacuum_during_week_at_4pm
Any tips?