Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ask0n/ece5696165f95346d8683dd86ced4071 to your computer and use it in GitHub Desktop.
Save ask0n/ece5696165f95346d8683dd86ced4071 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/ask0n/ece5696165f95346d8683dd86ced4071
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