Notify template

Any ideas how I would include the alias of the current automation in the notify message: below is an example

- alias: 'test notification'
  trigger:
  - at: '16:55:00'
    platform: time
  action:
  - service: lock.unlock
  - service: notify.notify_tgram
    data:
      title: 'Door unlocked'
      message: 'as per the schedule, the door has been unlocked per {{ alias }}.'

Alias is not something you can get dynamically. This is the list of available attributes available from the automation trigger.

Why can’t you just hard code the name of the automation rule in your message?

I can do that, but I have a bunch of different automations, and a template would simplify it.

Thanks!