Update main.yml

This commit is contained in:
chf007 2019-09-11 10:23:28 +08:00 committed by GitHub
parent 79e036d96e
commit ab7bb5d98f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.github/workflows/main.yml vendored Normal file
View File

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