Problems with the pushbullet config in automations.yaml file

Hi guys,
I have problems with the pushbullet config in automations.yaml file.
I want that when the aeotec sensor
“binary_sensor.aeotec_zw100_multisensor_6_sensor” is triggered with motion, send a text through Pushbull to Mobile. Have tested multiple config without results.

My file in the configurations.yaml:

# Pushbullet
notify:
 - name: Pushbullet
   platform: pushbullet
   api_key: o.....

group: !include groups.yaml
automation: !include automations.yaml
automation old: !include_dir_merge_list automations
script: !include scripts.yaml

My file in the automations.yaml:

# Send message to pushbullet
  - alias: Message to pushbullet
    trigger:
      platform: numeric_state
      entity_id: binary_sensor.aeotec_zw100_multisensor_6_sensor
      abo: on
    action:
      service: notify.mypushbullet
      data_template:
        title: "Motion"
        message: "Motion frontdoor"

In the logg file:

Invalid config for [automation]: [to] is an invalid option for [automation]. Check: automation->trigger->0->to. (See /config/configuration.yaml, line 87). Please check the docs at https://home-assistant.io/components/automation/

Thanks.

what is the config at:

/config/configuration.yaml, line 87

If your states are on and off. Then you don’t want to use numeric state for your trigger.

  - alias: Message to pushbullet
    trigger:
      platform: state
      entity_id: binary_sensor.aeotec_zw100_multisensor_6_sensor
      to: 'on'
    action:
      service: notify.mypushbullet
      data:
        title: "Motion"
        message: "Motion frontdoor"

Note the change from data_template to data: as this no templates in the service data. Also note that ‘on’, ‘On’ and ‘ON’ are all different states when evaluated by home assistant. Be sure the state matches what is reported during motion.

Finally confirm the service call. You named your notify service ‘pushbullet’ but your service call is ‘mypushbullet’ the service call needs to match the service call shown in Home Assistant.

The states and the services can be viewed in the developer tab in the left sidebar.

Thanks,
line 87 group: !include groups.yaml.

after the change to platform: state , no error in the configurations.yaml or automations.yaml.
Will try tomorrow the motion sensor
Thanks.