Actions Not Showing On iOS; Unable to run scripts from Apple Watch

My automations.yaml looks like this

- alias: "Action Turn Lights Off"
  id: 0477d257-6b0d-4d26-bb24-86f934e56c0d
  initial_state: true
  trigger:
    - platform: event
      event_type: ios.action_fired
      event_data:
        triggerSource: appShortcut
        actionName: "Lights Off"
  action:
    - service: script.turn_off_all_lights
      entity_id: remote.universal_remote_remote
- alias: "Action Turn Lights On"
  id: 29f2f876-0697-4e3b-bd60-cd1b303945b1
  initial_state: true
  trigger:
    - platform: event
      event_type: ios.action_fired
      event_data:
        triggerSource: appShortcut
        actionName: "Lights On"
  action:
    - service: script.turn_on_all_lights
      entity_id: remote.universal_remote_remote

But these actions will not show up on iOS app Settings > Actions > Synced Actions.

My goal here is to be able to run script.turn_on_all_lights and script.turn_off_all_lights from my apple watch. I don’t believe scenes will work as one of the lights is RF-based (I control the RF via scripts, they don’t have entities; controlled via Broadcom).

Can anyone point me in the right direction?