From ab7bb5d98fcea87d6d8125f3ea5a01a80e396a91 Mon Sep 17 00:00:00 2001 From: chf007 Date: Wed, 11 Sep 2019 10:23:28 +0800 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..73ed615 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,12 @@ +workflow "Send notification on push" { + on = "push" + resolves = [ + "Dingtalk notification", + ] +} + +action "Dingtalk notification" { + uses = "cooperwu/action-dingtalk@master" + secrets = ["DINGTALK_WEBHOOK"] + args = "A new commit has been pushed to cooperwu/action-dingtalk." +}