gitlab_test_webhook
Validate GitLab webhook functionality by testing specific webhooks within designated projects using project and webhook IDs for accurate integration and workflow verification.
Instructions
Test a webhook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The ID or URL-encoded path of the project | |
webhook_id | Yes | The ID of the webhook |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
},
"webhook_id": {
"description": "The ID of the webhook",
"type": "number"
}
},
"required": [
"project_id",
"webhook_id"
],
"type": "object"
}