From fb7365fba9add22f3986dcb26fede5f7031375b4 Mon Sep 17 00:00:00 2001 From: zenmush <122081925+zenmush@users.noreply.github.com> Date: Fri, 30 May 2025 04:57:57 +0900 Subject: [PATCH] fix: Correct mcp_config_file parameter to mcp_config in issue-triage workflow (#89) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The workflow was using 'mcp_config_file' which is not a valid parameter for the claude-code-base-action. The correct parameter name is 'mcp_config' as defined in the action.yml file. This fix ensures that the MCP server configuration is properly passed to the action, allowing the GitHub MCP server to be correctly initialized. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- .github/workflows/issue-triage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml index cbe973a..9cf2dd6 100644 --- a/.github/workflows/issue-triage.yml +++ b/.github/workflows/issue-triage.yml @@ -99,6 +99,6 @@ jobs: with: prompt_file: /tmp/claude-prompts/triage-prompt.txt allowed_tools: "Bash(gh label list),mcp__github__get_issue,mcp__github__get_issue_comments,mcp__github__update_issue,mcp__github__search_issues,mcp__github__list_issues" - mcp_config_file: /tmp/mcp-config/mcp-servers.json + mcp_config: /tmp/mcp-config/mcp-servers.json timeout_minutes: "5" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}