2018-01-01 19:00:45 -05:00
|
|
|
#-------------------------------------------
|
|
|
|
# RSS Podcast Alerting function Packages
|
|
|
|
# @CCOSTAN
|
|
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
|
|
#-------------------------------------------
|
|
|
|
|
|
|
|
#-------------------------------------------
|
|
|
|
feedreader:
|
|
|
|
urls:
|
2018-03-08 12:51:32 -05:00
|
|
|
- https://hasspodcast.io/feed/podcast #HA Podcast Feed
|
|
|
|
- https://us12.campaign-archive.com/feed?u=45cab4343ffdbeb9667c28a26&id=e01847e94f #This is CCOSTAN's Smart Home Blog feed
|
2021-12-09 16:54:21 -05:00
|
|
|
- https://alerts.home-assistant.io/feed.xml
|
2020-05-03 18:12:24 -04:00
|
|
|
# - https://feeds.feedburner.com/RecentCommitsToBearStoneHA # - This is the Repo Commit feed.
|
2018-01-01 19:00:45 -05:00
|
|
|
#-------------------------------------------
|
|
|
|
|
|
|
|
automation:
|
|
|
|
- alias: Send notification of RSS feed title when updated
|
2020-07-20 19:33:03 +01:00
|
|
|
id: 7762ab96-f5c0-4846-a3a1-f0f3af82c275
|
2018-01-01 19:00:45 -05:00
|
|
|
trigger:
|
|
|
|
platform: event
|
|
|
|
event_type: feedreader
|
|
|
|
|
|
|
|
action:
|
2018-03-19 11:25:23 -04:00
|
|
|
|
2021-12-09 16:57:42 -05:00
|
|
|
- service: persistent_notification.create
|
|
|
|
data:
|
|
|
|
message: '{{trigger.event.data.title}}'
|
|
|
|
title: '{{trigger.event.data.link}}'
|
|
|
|
|