Simple Telegram send
Version updated for opa-oz/simple-telegram-send to version v1.
- This action is used across all versions by ? repositories.
Go to the GitHub Marketplace to find the latest changes.
Release notes
Simple Telegram send
Full Changelog: https://github.com/opa-oz/simple-telegram-send/commits/v1
Send it straightforwardly to Telegram
- No Dockerfile / Docker-image
- No external dependencies (works with vanilla actions runner)
- ~No functionality~ Simple to use! 🥳
Usage
- name: Simple Telegram send
uses: yakubique/simple-telegram-send@v1
with:
token: ${{ secrets.TELEGRAM_TOKEN }}
to: ${{ secrets.TELEGRAM_CHAT_ID }}
message: "Hello, world!"
Inputs
INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION |
---|---|---|---|---|
token | string | true | Telegram bot’s authorization token. | |
to | string | true | Unique identifier or username of the target Telegram chat. | |
message | string | false | "Ping from ${{ github.repository }}" | Text message to send. |