16 lines
403 B
YAML
Raw Normal View History

2019-09-11 11:56:17 +08:00
name: Send notification on push
on: [push]
jobs:
send-msg:
runs-on: ubuntu-latest
steps:
- name: WeChat Work notification by text
uses: chf007/action-wechat-work@master
env:
WECHAT_WORK_BOT_WEBHOOK: ${{secrets.WECHAT_WORK_BOT_WEBHOOK}}
with:
msgtype: text
content: 广州今日天气29度大部分多云降雨概率60%
2019-09-11 10:23:28 +08:00