Are actions through Widgets/3d pressing broken?

I am using the latest beta and noticed that actions (by 3d pressing the app or through widgets) are not working. I can see the information passing through by subscribing to the event ios.action_fired but the action is not performed, in my case, turning some lights on and off.

Here’s my automation:

      - alias: "Movie Show Time"
        initial_state: true
        trigger:
          - platform: event
            event_type: ios.action_fired
            event_data:
              actionName: 'Movie Show Time'
        action:
          - service: light.turn_off
            entity_id: light.living_room
          - service: light.turn_on
            data:
              entity_id: light.tv_light
              brightness_pct: 25
              kelvin: 6500

Here’s the information:

    {
        "event_type": "ios.action_fired",
        "data": {
            "sourceDeviceID": "REDACTEDsiphone_beta",
            "triggerSource": "widget",
            "actionName": "Movie Show Time ",
            "actionID": "DCD95F94-631F-457F-8878-134CC08834C4",
            "sourceDevicePermanentID": "25D2736D-BC34-4416-AFF5-827E3A0D1728",
            "sourceDeviceName": "REDACTEDs-iPhone"
        },
        "origin": "REMOTE",
        "time_fired": "2019-09-20T14:14:50.195467+00:00",
        "context": {
            "id": "8c6932f3671540268071b81ce15e42d3",
            "parent_id": null,
            "REDACTED_id": "57243792d29e445cbc0b20c63cb166d1"
        }
    }

Any idea where to begin?