list_code_scanning_alerts
Retrieve GitHub Advanced Security code scanning alerts for a specific repository to identify and address potential vulnerabilities in your codebase.
Instructions
List the current GitHub Advanced Security code scanning 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"
}