mirror of
https://gitee.com/jack_whh/action-wechat-work.git
synced 2026-03-10 08:42:54 +08:00
13 lines
284 B
YAML
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."
|
|
}
|