Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions pkg/github/__toolsnaps__/get_dependabot_alert.snap
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
{
"annotations": {
"title": "Get dependabot alert",
"readOnlyHint": true
"readOnlyHint": true,
"title": "Get dependabot alert"
},
"description": "Get details of a specific dependabot alert in a GitHub repository.",
"inputSchema": {
"type": "object",
"required": [
"owner",
"repo",
"alertNumber"
],
"properties": {
"alertNumber": {
"description": "The number of the alert.",
"type": "number"
"type": "number",
"description": "The number of the alert."
},
"owner": {
"description": "The owner of the repository.",
"type": "string"
"type": "string",
"description": "The owner of the repository."
},
"repo": {
"description": "The name of the repository.",
"type": "string"
"type": "string",
"description": "The name of the repository."
}
},
"required": [
"owner",
"repo",
"alertNumber"
],
"type": "object"
}
},
"name": "get_dependabot_alert"
}
34 changes: 17 additions & 17 deletions pkg/github/__toolsnaps__/list_dependabot_alerts.snap
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
{
"annotations": {
"title": "List dependabot alerts",
"readOnlyHint": true
"readOnlyHint": true,
"title": "List dependabot alerts"
},
"description": "List dependabot alerts in a GitHub repository.",
"inputSchema": {
"type": "object",
"required": [
"owner",
"repo"
],
"properties": {
"owner": {
"description": "The owner of the repository.",
"type": "string"
"type": "string",
"description": "The owner of the repository."
},
"repo": {
"description": "The name of the repository.",
"type": "string"
"type": "string",
"description": "The name of the repository."
},
"severity": {
"type": "string",
"description": "Filter dependabot alerts by severity",
"enum": [
"low",
"medium",
"high",
"critical"
],
"type": "string"
]
},
"state": {
"default": "open",
"type": "string",
"description": "Filter dependabot alerts by state. Defaults to open",
"default": "open",
"enum": [
"open",
"fixed",
"dismissed",
"auto_dismissed"
],
"type": "string"
]
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}
},
"name": "list_dependabot_alerts"
}
Loading
Loading