Tag reading and associated automation, tag read and automation never triggere

System info: Debian 10, status health and supported. Version 2020.12.1, config in separate included directory. Android 10 running on a Samsung S10+ with Companion 12-12-20 beta.

I have an old tag stuck to my main pc, decided it was finally time to make it do something in HA. I added the tag via the android mobile app and built a basic automation in the tag. Saved it, could not find it anywhere. So tried a couple more times and gave up and hand created the automation.

Not really sure why app created automation did no save anywhere.

Using the events listener that tag appears to scan properly and gets into HA ok.
Event Listener - tag_scanned

{
    "event_type": "tag_scanned",
    "data": {
        "tag_id": "63644da8-f7f0-46b6-98c0-0b31c54cdad7",
        "device_id": "d394bab445ba3c66"
    },
    "origin": "LOCAL",
    "time_fired": "2020-12-16T23:09:32.640782+00:00",
    "context": {
        "id": "e80533be9acb7a644fcb4b64ffabef85",
        "parent_id": null,
        "user_id": "27f8ae16b4f6454fb307be89afadb409"
    }
}

The intended automation is as follows:

alias: Tag pc is scanned
description: 'Tag pc is scanned'
mode: single
trigger:
  - platform: tag
    tag_id: 63644da8-f7f0-46b6-98c0-0b31c54cdad7
action:
  - type: toggle
    entity_id: light.tree_top
    domain: light
  - type: toggle
    entity_id: light.tree_mid
    domain: light

Yes, the lights work from the frontend and other automations.
Any ideas where the problem might be?

So, I am an idiot… long day of work and I remembered the wrong name for the entity_id.

My correctly written .yaml file works as it should. But, I still cannot seem to create an automation in the tag tab that works.

- id: tag pc scanned
  alias: Tag pc is scanned
#  mode: single
  trigger:
    - platform: tag
      tag_id: 63644da8-f7f0-46b6-98c0-0b31c54cdad7
  action:
    - service: light.toggle
      entity_id: light.tree_top,light.tree_mid

The above works as expected.