get_github_actions
Fetch available GitHub Actions from a repository by specifying the owner and repo. Use a GitHub personal access token for enhanced access if needed.
Instructions
Get available GitHub Actions for a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | Owner of the repository (username or organization) | |
repo | Yes | Name of the repository | |
token | No | GitHub personal access token (optional) |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"description": "Owner of the repository (username or organization)",
"type": "string"
},
"repo": {
"description": "Name of the repository",
"type": "string"
},
"token": {
"description": "GitHub personal access token (optional)",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}