Actionable notifications for Android

can anybody tell me why the actionable button does not work.
currently just testing with a light switch … I get the notifacation and the action text but it wont in this case turn on the light.

- id: '1663587187910'
  alias: Notify Of Open door
  description: ''
  trigger:
  - platform: state
    entity_id:
    - sun.sun
    attribute: next_dusk
  condition:
  - condition: numeric_state
    entity_id: cover.workshop_door
    attribute: current_position
    above: 10
  action:
  - service: notify.mobile_app_sm_n986b
    data:
      message: Workshop Door Is Still Open
      data:
        actions:
        - action: Workshop_Door_Is_Open
          title: Close Workshop Door
  - wait_for_trigger:
    - platform: event
      event_type: mobile_app_notification_action
      context: {}
      event_data:
        actionName: Workshop_Door_Is_Open
    timeout:
      hours: 0
      minutes: 0
      seconds: 0
      milliseconds: 0
  - type: turn_on
    device_id: 4b9b9be7043a94ae26ac691439b40e8d
    entity_id: light.computer
    domain: light
  mode: single