mirror of
https://github.com/seepine/action-wechat-work.git
synced 2025-01-19 14:06:37 +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."
|
||
|
}
|