Files
telegram-action/.github/main.workflow
T
2019-02-17 11:21:14 +08:00

14 lines
253 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"
}