Drone 插件市场 > Wechat for Work
wechat.svg

Wechat for Work

by clem109

Apache License 2.0

工作微信的 Drone 插件,用于显示构建通知。

YAML 配置示例

kind: pipeline
name: default

steps:
- name: wechat
  image: clem109/drone-wechat
  settings:
    corpid: corpid
    corp_secret: secret
    agent_id: 1234567
    title: ${DRONE_REPO_NAME}
    description: "Build Number: ${DRONE_BUILD_NUMBER} failed. ${DRONE_COMMIT_AUTHOR} please fix. Check the results here: ${DRONE_BUILD_LINK} "
    msg_url: ${DRONE_BUILD_LINK}
    btn_txt: btn

字段属性说明

  • corpid

    string必填项

    授权的 corpid

    推荐使用密钥 (Secret) 功能

    默认值:none

  • corp_secret

    string必填项

    用于授权的密码

    推荐使用密钥 (Secret) 功能

    默认值:none

  • agent_id

    string必填项

    发送信息的代理 ID

    默认值:none

  • to_party

    string可选项

    发送信息的一方 ID

    默认值:none

  • to_user

    string可选项

    发送信息的用户 ID

    默认值:none

  • to_tag

    string可选项

    发送信息的标签 ID

    默认值:none

  • msg_url

    string可选项

    点击文本卡链接

    默认值:none

  • btntxt

    string可选项

    卡片上按钮的文字

    默认值:none

  • title

    string可选项

    通知标题

    默认值:none

  • description

    string必填项

    卡片文字说明

    默认值:none