1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ## Request timeout
- # timeout: 5s
- ## Uncomment following line in order to write template from scratch (be careful!)
- #no_builtin_template: true
- ## Customizable templates path
- #templates:
- # - contrib/templates/legacy/template.tmpl
- ## You can also override default template using `default_message`
- ## The following example to use the 'legacy' template from v0.3.0
- #default_message:
- # title: '{{ template "legacy.title" . }}'
- # text: '{{ template "legacy.content" . }}'
- ## Targets, previously was known as "profiles"
- targets:
- webhook1: #todo 创建机器人
- # Change access_token=xxxxxxxxxxxx to your robot's url
- url: https://oapi.dingtalk.com/robot/send?access_token=8c0b0fa2247e4d0ba0b0c8e714eb5abf9cb54e7fa5df657557bf579e521d7b1a
- # secret for signature
- # Change SEC000000000000000000000 to your robot's secret
- secret: SEC3a7c0207dca4a96961284ef02c410c6e2f1a47ec6f32f5ee6dd4a84a18404da4
- webhook2:
- url: https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxx
- webhook_legacy:
- url: https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxx
- # Customize template content
- message:
- # Use legacy template
- title: '{{ template "legacy.title" . }}'
- text: '{{ template "legacy.content" . }}'
- webhook_mention_all:
- url: https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxx
- mention:
- all: true
- webhook_mention_users:
- url: https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxx
- mention:
- mobiles: ['156xxxx8827', '189xxxx8325']
|