Conversation
- Update Go module path: github.com/githubnext/gh-aw-mcpg -> github.com/github/gh-aw-mcpg - Update all Go imports to use new module path - Update container images: ghcr.io/githubnext/* -> ghcr.io/github/* - Update repository URLs in documentation - Update GitHub Actions references: githubnext/gh-aw -> github/gh-aw - Update GitHub Pages URLs: githubnext.github.io -> github.github.io - All tests pass after migration
There was a problem hiding this comment.
Pull request overview
This pull request migrates the repository from the githubnext organization to the github organization, updating references across Go code, Docker images, documentation, and workflow configurations.
Changes:
- Updated Go module path from
github.com/githubnext/gh-aw-mcpgtogithub.com/github/gh-aw-mcpg - Changed Docker image references from
ghcr.io/githubnext/*toghcr.io/github/* - Updated documentation URLs and repository references throughout
Reviewed changes
Copilot reviewed 128 out of 129 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| go.mod | Updated module path to github organization |
| main.go and internal/**/*.go | Updated all import paths |
| test/**/*.go | Updated import paths in tests |
| test/serena-mcp-tests/** | Updated Docker image references and documentation |
| containers/serena-mcp-server/** | Updated OCI labels and documentation |
| config.json, config.toml | Updated container image references |
| README.md, CONTRIBUTING.md, AGENTS.md | Updated repository URLs and Docker images |
| Makefile | Updated workflow URL reference |
| .github/workflows/*.md | Updated container references in workflow definitions |
| .github/workflows/*.lock.yml | Updated container and action references in compiled workflows |
| .github/aw/** | Updated documentation URLs and schema references |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - name: Downloading container images | ||
| run: bash /opt/gh-aw/actions/download_docker_images.sh ghcr.io/github/github-mcp-server:v0.27.0 | ||
| - name: Download container images | ||
| run: bash /opt/gh-aw/actions/download_docker_images.sh ghcr.io/github/github-mcp-server:v0.30.2 ghcr.io/githubnext/gh-aw-mcpg:v0.0.84 node:lts-alpine |
There was a problem hiding this comment.
Several workflow files still contain githubnext references that were not updated. These lock files reference the MCP gateway Docker image as ghcr.io/githubnext/gh-aw-mcpg:v0.0.84 which should be ghcr.io/github/gh-aw-mcpg:v0.0.84 for consistency with the rest of the migration.
Examples found in:
.github/workflows/daily-compliance-checker.lock.yml(line 160, 410).github/workflows/duplicate-code-detector.lock.yml(line 143, 435, 460).github/workflows/go-fan.lock.yml(line 158, 408, 433).github/workflows/go-logger.lock.yml(line 160, 399).github/workflows/issue-monster.lock.yml(line 153, 410)- And several other
.lock.ymlfiles
These appear to be generated/compiled workflow files (.lock.yml) but should still be updated for consistency.
| run: bash /opt/gh-aw/actions/download_docker_images.sh ghcr.io/github/github-mcp-server:v0.30.2 ghcr.io/githubnext/gh-aw-mcpg:v0.0.84 node:lts-alpine | |
| run: bash /opt/gh-aw/actions/download_docker_images.sh ghcr.io/github/github-mcp-server:v0.30.2 ghcr.io/github/gh-aw-mcpg:v0.0.84 node:lts-alpine |
No description provided.