G
GetGithubCheckSuite
GithubApi.GetGithubCheckSuite
Description
Retrieve a GitHub check suite by ID.
Use this tool to get information about a specific check suite in a GitHub repository using its ID. Suitable for users with appropriate permissions on private or public repositories.
Input Parameters
{
"parameters": [
{
"name": "check_suite_id",
"required": true,
"inferrable": true,
"description": "The unique identifier for the GitHub check suite to retrieve.",
"value_schema": {
"val_type": "integer"
}
},
{
"name": "repository_name",
"required": true,
"inferrable": true,
"description": "The name of the repository. This is not case sensitive.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "repository_owner",
"required": true,
"inferrable": true,
"description": "The account owner of the GitHub repository. The name is not case sensitive.",
"value_schema": {
"val_type": "string"
}
}
]
} Output
{
"description": "Response from the API endpoint 'checks/get-suite'.",
"value_schema": {
"val_type": "json"
},
"available_modes": [
"value",
"error"
]
}