@@ -16,7 +16,7 @@ import (
1616 "github.com/github/github-mcp-server/pkg/scopes"
1717 "github.com/github/github-mcp-server/pkg/translations"
1818 "github.com/github/github-mcp-server/pkg/utils"
19- "github.com/google/go-github/v82 /github"
19+ "github.com/google/go-github/v86 /github"
2020 "github.com/google/jsonschema-go/jsonschema"
2121 "github.com/modelcontextprotocol/go-sdk/mcp"
2222)
@@ -990,10 +990,10 @@ func runWorkflow(ctx context.Context, client *github.Client, owner, repo, workfl
990990 var workflowType string
991991
992992 if workflowIDInt , parseErr := strconv .ParseInt (workflowID , 10 , 64 ); parseErr == nil {
993- resp , err = client .Actions .CreateWorkflowDispatchEventByID (ctx , owner , repo , workflowIDInt , event )
993+ _ , resp , err = client .Actions .CreateWorkflowDispatchEventByID (ctx , owner , repo , workflowIDInt , event )
994994 workflowType = "workflow_id"
995995 } else {
996- resp , err = client .Actions .CreateWorkflowDispatchEventByFileName (ctx , owner , repo , workflowID , event )
996+ _ , resp , err = client .Actions .CreateWorkflowDispatchEventByFileName (ctx , owner , repo , workflowID , event )
997997 workflowType = "workflow_file"
998998 }
999999
0 commit comments