push_files
Push multiple files to a GitLab project in one commit using branch, commit message, and file content. Simplify file updates with batch processing.
Instructions
Push multiple files to a GitLab project in a single commit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | ||
commit_message | No | ||
files | No | ||
project_id | No |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"type": "string"
},
"commit_message": {
"type": "string"
},
"files": {
"items": {
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"path": {
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
},
"type": "array"
},
"project_id": {
"type": "string"
}
},
"type": "object"
}