From 1b52d8d89417958e46066c09ad0870a567163c8b Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Tue, 19 Feb 2019 23:58:46 +0800 Subject: [PATCH] chore(workflow): add test message --- .github/main.workflow | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 42570a5..347b42a 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -2,7 +2,8 @@ workflow "Send Notification" { on = "push" resolves = [ "Send Custom Message", - "Send Default Message" + "Send Default Message", + "Send Photo Message" ] } @@ -23,7 +24,7 @@ action "Send Default Message" { ] } -action "Send photo message" { +action "Send Photo message" { uses = "appleboy/telegram-action@master" secrets = [ "TELEGRAM_TOKEN", @@ -32,5 +33,5 @@ action "Send photo message" { env = { PHOTO = "tests/github.png" } - args = "A new commit has been pushed." + args = "send photo message." }