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:25:02 +08:00

13 lines
295 B
YAML

workflow "Send notification on push" {
on = "push"
resolves = [
"WeChat Work notification",
]
}
action "WeChat Work notification" {
uses = "chf007/action-wechat-work@master"
secrets = ["WECHAT_WORK_WEBHOOK"]
args = "A new commit has been pushed to chf007/action-wechat-work."
}