Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 1: cannot unmarshal !!str `workflo...` into model.Workflow
2019-09-11 10:23:28 +08:00

13 lines
284 B
YAML

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