search_jobs_by_scenario
Retrieve Jenkins jobs by scenario to streamline job identification and management. Input a scenario name or index to fetch a list of matching job details.
Instructions
Get the specified Jenkins job directly by scenario.
Args:
scenario: Scenario name or index
Returns:
List of job info matching the scenario
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scenario | Yes |
Input Schema (JSON Schema)
{
"properties": {
"scenario": {
"title": "Scenario",
"type": "string"
}
},
"required": [
"scenario"
],
"title": "search_jobs_by_scenarioArguments",
"type": "object"
}