list_dependabot_alerts
Retrieve current GitHub Dependabot alerts for a repository to view and manage security vulnerabilities. Input repository owner and name to access detailed alerts.
Instructions
List the current GitHub Dependabot alerts for a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | ||
repo | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner": {
"type": "string"
},
"repo": {
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}