fix: Adapt to GitHub MCP Tooling Consolidation#354
Merged
jerop merged 3 commits intogoogle-github-actions:mainfrom Oct 23, 2025
Merged
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
94d9cce to
9cc452a
Compare
werdnum
pushed a commit
to werdnum/family-assistant
that referenced
this pull request
Oct 21, 2025
This update adapts our Gemini CI workflows to the breaking changes introduced in GitHub MCP Server v0.18.0, which consolidated multiple pull request tools into a single 'pull_request_read' tool. Changes: - Pin GitHub MCP server to v0.18.0 instead of 'latest' to prevent unexpected disruptions from future upstream updates - Update tool references from individual tools to consolidated 'pull_request_read' tool: * get_pull_request → pull_request_read.get * get_pull_request_files → pull_request_read.get_files * get_pull_request_diff → pull_request_read.get_diff - Update prompts to use new tool references - Maintain dependabot exclusions in dispatch and scheduled-triage workflows Based on google-github-actions/run-gemini-cli#354 Reviewed: cache-no-cache 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
werdnum
pushed a commit
to werdnum/family-assistant
that referenced
this pull request
Oct 21, 2025
This update adapts our Gemini CI workflows to the breaking changes introduced in GitHub MCP Server v0.18.0, which consolidated multiple pull request tools into a single 'pull_request_read' tool. Changes: - Pin GitHub MCP server to v0.18.0 instead of 'latest' to prevent unexpected disruptions from future upstream updates - Update tool references from individual tools to consolidated 'pull_request_read' tool: * get_pull_request → pull_request_read.get * get_pull_request_files → pull_request_read.get_files * get_pull_request_diff → pull_request_read.get_diff - Update prompts to use new tool references - Maintain dependabot exclusions in dispatch and scheduled-triage workflows Based on google-github-actions/run-gemini-cli#354 Reviewed: cache-no-cache 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
|
LGTM |
The current Docker image reference for GitHub MCP is using 'latest'. This is error-prone and has led to recent failures due to breaking changes, such as tool name consolidations introduced in [v0.18.0](https://github.com/github/github-mcp-server/releases/tag/v0.18.0) where the `get_pull_request*` tools used in this repo were renamed and consolidated.
The underlying GitHub MCP server tooling for pull request read operations has been consolidated, moving away from individual tools like `get_pull_request*` into a single tool `pull_request_read` with multiple methods. Changes were made on [v0.18.0](https://github.com/github/github-mcp-server/releases/tag/v0.18.0) of the GitHub MCP server.
The underlying GitHub MCP server tooling for pull request read operations has been consolidated, moving away from individual tools like `get_pull_request*` into a single tool `pull_request_read` with multiple methods. Changes were made on [v0.18.0](https://github.com/github/github-mcp-server/releases/tag/v0.18.0) of the GitHub MCP server.
9cc452a to
4841daa
Compare
jerop
approved these changes
Oct 23, 2025
Merged
google-github-actions-bot
added a commit
that referenced
this pull request
Oct 23, 2025
## What's Changed * Move `gemini-invoke` to custom command. by @joshualitt in #348 * Move rest of prompts to custom commands. by @joshualitt in #350 * Normalize tool names in prompts. by @joshualitt in #351 * Fix interpolation syntax. by @joshualitt in #357 * Switch to local telemetry and upload manually to GCP by @joshualitt in #361 * fix: Adapt to GitHub MCP Tooling Consolidation by @cperez08 in #354 * refactor(ci): prioritize event triggers in dispatch workflow by @jerop in #366 * fix(action): correct upload artifacts condition by @jerop in #368 ## New Contributors * @joshualitt made their first contribution in #348 * @cperez08 made their first contribution in #354 **Full Changelog**: v0.1.13...v0.1.14
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.
This pull request addresses recent workflow failures where the Gemini CLI could not perform review tasks due to breaking changes in the GitHub MCP server.
These changes were introduced in the GitHub MCP server's latest release, which consolidated the
get_pull_request*tools into a singlepull_request_readwith multiple methods.Key Changes and Fixes
latest. This prevents unexpected disruptions from future upstream updates and ensures consistent action stability.reviewandinvokeworkflows and examples.For full details on the upstream changes, see the GitHub MCP Server release notes:
v0.18.0 Release Notes
Fixes #353