Error with automation after update

Just updated to the latest version 0.86.3, was using 85.1

got error:

Invalid config for [automation]: Service notify.Sms_alert does not match format <domain>.<name> for dictionary value @ data[‘action’][0][‘service’]. Got None. (See /config/configuration.yaml, line 352). Please check the docs at Automation - Home Assistant

Its pointing to(line 352):

group: !include groups.yaml

this is the automation:

- alias: Notify of state change
  trigger:
    platform: state
    entity_id: switch.aquarium_lights
  action:
  - service: notify.Sms_alert
    data:
      message: Aquarium lights is {{states.switch.aquarium_lights.state}}
      target:
      - 1713555555
  id: 6495dfda2c3747683f01a1e0c46b18f

My guess: service.Sms_alert is now service.sms_alert

1 Like

Yeah that was it. Thanks