Get notified any time there is a new Home Assistant alert

- id: 'd9a3935f-444e-42c9-9223-67bf7e58b103'
  alias: "Send notification of RSS feed title when updated"
  trigger:
    platform: event
    event_type: feedreader
    event_data:
      feed_url: https://alerts.home-assistant.io/feed.xml    
  action:
    service: persistent_notification.create
    data:
      title: "New HA alert available"
      message: "New alert available - {{ as_timestamp(now()) | timestamp_custom('%I:%M:%S %p %d%b%Y', true) }}"
      notification_id: "{{ trigger.event.data.title }}"

Too simple, thanks. That way I can finally use custom actions and therefore push this notification to my mobile devices instead of relying on that “silent, can be clicked away by every user” persistent notification which I´m not a fan of. I´ll give it a try.