gitlab_update_trigger_token
Modify a pipeline trigger token's description in a GitLab project by specifying the project ID and trigger ID. Essential for updating trigger details in CI/CD workflows.
Instructions
Update a pipeline trigger token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The new trigger description | |
project_id | Yes | The ID or URL-encoded path of the project | |
trigger_id | Yes | The ID of the trigger |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The new trigger description",
"type": "string"
},
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
},
"trigger_id": {
"description": "The ID of the trigger",
"type": "number"
}
},
"required": [
"project_id",
"trigger_id",
"description"
],
"type": "object"
}