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." +}