chore: export issues funcs#163
Merged
SamMorrowDrums merged 3 commits intomainfrom Apr 8, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR exports a set of GitHub issue and code scanning tool functions for external use.
- Renames functions from unexported (lowercase) to exported (uppercase) in files: server.go, issues.go, and code_scanning.go.
- Updates tests in issues_test.go and code_scanning_test.go to reference the new exported function names.
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| pkg/github/server.go | Updated tool functions to exported versions for issues handling. |
| pkg/github/issues_test.go | Updated tests to use new exported function names; note potential syntax error. |
| pkg/github/issues.go | Renamed internal functions to exported functions for issue handling. |
| pkg/github/code_scanning_test.go | Updated tests to use exported function names for code scanning. |
| pkg/github/code_scanning.go | Converted functions to exported, making code scanning tools accessible externally. |
c9a0100 to
a2208ab
Compare
DaleSeo
pushed a commit
to DaleSeo/github-mcp-server
that referenced
this pull request
Oct 24, 2025
* Add Prometheus MCP Server to registry This commit adds the Prometheus MCP Server to the official Docker MCP Registry. The server provides: - PromQL query execution against Prometheus - Metrics discovery and exploration - Authentication support (basic auth and bearer token) - Multi-tenant support for setups like Cortex, Mimir, or Thanos * Update prometheus server config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Export issues functions outside the package.