Files
telegram-action/.github/main.workflow
T
2019-02-17 12:16:37 +08:00

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!"
}