generate_daily_report
Generate and send daily GitLab commit reports to WeChat Work groups, tracking project contributions by date and user for team visibility.
Instructions
生成并发送GitLab提交记录的日报到企业微信
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | 查询日期,格式:YYYY-MM-DD | |
projectId | No | 项目ID(可选,不指定则查询所有项目) | |
username | No | GitLab用户名(可选,默认使用配置的用户名) |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "查询日期,格式:YYYY-MM-DD",
"type": "string"
},
"projectId": {
"description": "项目ID(可选,不指定则查询所有项目)",
"type": "string"
},
"username": {
"description": "GitLab用户名(可选,默认使用配置的用户名)",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}