Skip to content

Instantly share code, notes, and snippets.

@nikosthanos
Last active May 15, 2022 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save nikosthanos/3c3e7b39056b94008f5f04f9d7da563e to your computer and use it in GitHub Desktop.
Save nikosthanos/3c3e7b39056b94008f5f04f9d7da563e to your computer and use it in GitHub Desktop.
Home Assistant start Notify Telegram
blueprint:
name: HA start Notify Telegram
description: Notify telegram that Home Assistant has successfully started
domain: automation
source_url: https://gist.github.com/nikosthanos/3c3e7b39056b94008f5f04f9d7da563e
input:
notification_title:
name: Notification title (Optional)
description: 'Default: "My Home Assistant"'
default: My Home Assistant
notification_message:
name: Notification message (Required)
description: 'Default: "Hassos has succesfully started!"'
default: Hassos has succesfully started!
trigger:
platform: homeassistant
event: start
variables:
notification_title: !input 'notification_title'
notification_message: !input 'notification_message'
action:
- service: telegram_bot.send_message
data:
message: !input 'notification_message'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment