mirror of
https://github.com/appleboy/telegram-action.git
synced 2026-05-14 02:42:44 +00:00
14 lines
254 B
HCL
14 lines
254 B
HCL
workflow "Send Notification" {
|
|
on = "push"
|
|
resolves = ["Post message to Telegram"]
|
|
}
|
|
|
|
action "Post message to Telegram" {
|
|
uses = "appleboy/telegram-action@master"
|
|
secrets = [
|
|
"TELEGRAM_TOKEN",
|
|
"TELEGRAM_TO",
|
|
]
|
|
args = "Hello World!"
|
|
}
|