Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR integrates GoReleaser to automate the release process when a semver tag is pushed, ensuring version information is dynamically injected at build time.
- Introduces version, commit, and date variables in main.go and updates the cobra command to display version info.
- Updates the GitHub client’s UserAgent string to include the version.
- Adds configuration files for GoReleaser (.goreleaser.yaml) and a GitHub Actions workflow (.github/workflows/goreleaser.yml) to manage release automation.
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| cmd/github-mcp-server/main.go | Defines variables for version info and updates the UserAgent string. |
| .goreleaser.yaml | Configures build ldflags and archive settings for GoReleaser. |
| .github/workflows/goreleaser.yml | Sets up a workflow to trigger the release process on semver tag push. |
Tip: Copilot only keeps its highest confidence comments to reduce noise and keep you focused. Learn more
DaleSeo
pushed a commit
to DaleSeo/github-mcp-server
that referenced
this pull request
Oct 24, 2025
) * Initial submission * Update Okta MCP Server with clean Apache 2.0 license * Updated server.xml with the new format * renamed to okta-mcp-fctr * Updated server.yml task: [validate] go run ./cmd/validate --name okta-mcp-fctr ✅ Name is valid ✅ Directory is valid ✅ Secrets are valid ✅ License is valid ✅ Icon is valid
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.
Add a release mechanism on to run on semver tag push. Uses Goreleaser.