Unable to acknowledge alert through push notification

I’ve been trying to make an alert to remind me or Mrs. Super to open the windows when it’s cooler outside. I found a binary sensor that works perfectly, but now my alert repeats every thirty minutes. I made it acknowledgeable, and have tried several ways in the config file and through automations to turn it off through the push notification with no luck so far. What am I doing wrong?

alert:
  warm_inside:
    name: "It's nice out, OPEN the window!"
    entity_id: binary_sensor.warm_inside
    state: "on"
    repeat: 30
    can_acknowledge: true
    data:
      actions:
      - action: windows_opened
        title: "Windows opened"
      - service: alert.turn_off
        target:
          entity_id: alert.warm_inside
    notifiers:
      - notify

1 Like