update action

This commit is contained in:
David Blass
2025-10-23 17:10:28 -04:00
parent 85731f8360
commit 1328894afd
6 changed files with 54 additions and 14 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ export function createMcpConfig(githubInstallationToken: string) {
env: {
GITHUB_INSTALLATION_TOKEN: githubInstallationToken,
GITHUB_REPOSITORY: githubRepository,
LOG_LEVEL: "debug",
LOG_LEVEL: process.env.LOG_LEVEL,
},
},
},
-2
View File
@@ -9,7 +9,6 @@ export interface ToolResult {
type: "text";
text: string;
}[];
error?: string;
isError?: boolean;
}
@@ -72,7 +71,6 @@ const handleToolError = (error: unknown): ToolResult => {
text: `Error: ${errorMessage}`,
},
],
error: errorMessage,
isError: true,
};
};