mirror of
https://github.com/appleboy/telegram-action.git
synced 2026-06-11 22:17:55 +00:00
19 lines
366 B
Markdown
19 lines
366 B
Markdown
# 🚀 Telegram for GitHub Actions
|
|
|
|
[GitHub Action](https://developer.github.com/actions/) for sending a Telegram notification message.
|
|
|
|
<img src="./images/telegram-notification.png">
|
|
|
|
## Usage
|
|
|
|
```
|
|
action "Post message to Telegram" {
|
|
uses = "appleboy/telegram-action@master"
|
|
secrets = [
|
|
"TELEGRAM_TOKEN",
|
|
"TELEGRAM_TO",
|
|
]
|
|
args = "Hello World"
|
|
}
|
|
```
|