list_repository_issues
Retrieve and list issues from a specific AtomGit repository by specifying the repository owner and name for efficient issue tracking and management.
Instructions
List issues in a AtomGit repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | Repository owner | |
repo | Yes | Repository name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner": {
"description": "Repository owner",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}