Skip to content

speed up docker builds #92

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 3, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert "more standardization"
This reverts commit 1f294c1.
  • Loading branch information
mntlty committed Apr 3, 2025
commit 5e9f1ae2bbc82820a8b85def9273c28299a0a86f
6 changes: 3 additions & 3 deletions pkg/github/code_scanning.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ func getCodeScanningAlert(client *github.Client, t translations.TranslationHelpe
mcp.WithDescription(t("TOOL_GET_CODE_SCANNING_ALERT_DESCRIPTION", "Get details of a specific code scanning alert in a GitHub repository.")),
mcp.WithString("owner",
mcp.Required(),
mcp.Description("The owner of the repository"),
mcp.Description("The owner of the repository."),
),
mcp.WithString("repo",
mcp.Required(),
mcp.Description("The name of the repository"),
mcp.Description("The name of the repository."),
),
mcp.WithNumber("alert_number",
mcp.Required(),
mcp.Description("The number of the alert"),
mcp.Description("The number of the alert."),
),
),
func(ctx context.Context, request mcp.CallToolRequest) (*mcp.CallToolResult, error) {
Expand Down