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