diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 699cdc693e..c30478ab5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: ["**"] + branches: ["main"] pull_request: branches: ["**"] diff --git a/src/services/tools/bash.ts b/src/services/tools/bash.ts index 872515802b..dea94cdba4 100644 --- a/src/services/tools/bash.ts +++ b/src/services/tools/bash.ts @@ -30,7 +30,7 @@ class DisposableProcess implements Disposable { */ export const createBashTool: ToolFactory = (config: ToolConfiguration) => { return tool({ - description: TOOL_DEFINITIONS.bash.description + "\ncwd: " + config.cwd, + description: TOOL_DEFINITIONS.bash.description + "\nRuns in " + config.cwd + " - no cd needed", inputSchema: TOOL_DEFINITIONS.bash.schema, execute: async ({ script, timeout_secs, max_lines }): Promise => { const startTime = performance.now();