13 lines
295 B
YAML
Raw Normal View History

2019-09-11 10:23:28 +08:00
workflow "Send notification on push" {
on = "push"
resolves = [
2019-09-11 10:25:02 +08:00
"WeChat Work notification",
2019-09-11 10:23:28 +08:00
]
}
2019-09-11 10:25:02 +08:00
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."
2019-09-11 10:23:28 +08:00
}