list_commits
Retrieve a list of commits from a specific branch in a GitHub repository. Input repository owner, repo name, and branch SHA to access detailed commit history.
Instructions
Get list of commits of a branch in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | ||
page | No | ||
perPage | No | ||
repo | Yes | ||
sha | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner": {
"type": "string"
},
"page": {
"type": "number"
},
"perPage": {
"type": "number"
},
"repo": {
"type": "string"
},
"sha": {
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}