list_secret_scanning_alerts
Retrieve and display GitHub Advanced Security secret scanning alerts for a specified repository to identify and manage potential security risks.
Instructions
List the current GitHub Advanced Security secret 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"
}