gitlab_create_trigger_token
Generate a pipeline trigger token for GitLab projects to initiate CI/CD workflows. Specify the project ID and a description to create and manage automation triggers.
Instructions
Create a new pipeline trigger token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The trigger description | |
project_id | Yes | The ID or URL-encoded path of the project |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The trigger description",
"type": "string"
},
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
}
},
"required": [
"project_id",
"description"
],
"type": "object"
}