get_gitlab_commits
Retrieve GitLab commit records for specified dates to generate daily work reports and share them via WeChat Work integration.
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"
}