| |
| |
| |
| |
| |
|
|
| import path from 'node:path'; |
| import * as fs from 'node:fs'; |
| import { Writable } from 'node:stream'; |
| import { ProxyAgent } from 'undici'; |
|
|
| import type { CommandContext } from '../../ui/commands/types.js'; |
| import { |
| getGitRepoRoot, |
| getLatestGitHubRelease, |
| isGitHubRepository, |
| getGitHubRepoInfo, |
| } from '../../utils/gitUtils.js'; |
|
|
| import type { SlashCommand, SlashCommandActionReturn } from './types.js'; |
| import { CommandKind } from './types.js'; |
| import { getUrlOpenCommand } from '../../ui/utils/commandUtils.js'; |
|
|
| export const GITHUB_WORKFLOW_PATHS = [ |
| 'gemini-dispatch/gemini-dispatch.yml', |
| 'gemini-assistant/gemini-invoke.yml', |
| 'issue-triage/gemini-triage.yml', |
| 'issue-triage/gemini-scheduled-triage.yml', |
| 'pr-review/gemini-review.yml', |
| ]; |
|
|
| |
| function getOpenUrlsCommands(readmeUrl: string): string[] { |
| |
| const openCmd = getUrlOpenCommand(); |
|
|
| |
| const urlsToOpen = [readmeUrl]; |
|
|
| const repoInfo = getGitHubRepoInfo(); |
| if (repoInfo) { |
| urlsToOpen.push( |
| `https://github.com/${repoInfo.owner}/${repoInfo.repo}/settings/secrets/actions`, |
| ); |
| } |
|
|
| |
| const commands = urlsToOpen.map((url) => `${openCmd} "${url}"`); |
| return commands; |
| } |
|
|
| |
| export async function updateGitignore(gitRepoRoot: string): Promise<void> { |
| const gitignoreEntries = ['.gemini/', 'gha-creds-*.json']; |
|
|
| const gitignorePath = path.join(gitRepoRoot, '.gitignore'); |
| try { |
| |
| let existingContent = ''; |
| let fileExists = true; |
| try { |
| existingContent = await fs.promises.readFile(gitignorePath, 'utf8'); |
| } catch (_error) { |
| |
| fileExists = false; |
| } |
|
|
| if (!fileExists) { |
| |
| const contentToWrite = gitignoreEntries.join('\n') + '\n'; |
| await fs.promises.writeFile(gitignorePath, contentToWrite); |
| } else { |
| |
| const missingEntries = gitignoreEntries.filter( |
| (entry) => |
| !existingContent |
| .split(/\r?\n/) |
| .some((line) => line.split('#')[0].trim() === entry), |
| ); |
|
|
| if (missingEntries.length > 0) { |
| const contentToAdd = '\n' + missingEntries.join('\n') + '\n'; |
| await fs.promises.appendFile(gitignorePath, contentToAdd); |
| } |
| } |
| } catch (error) { |
| console.debug('Failed to update .gitignore:', error); |
| |
| } |
| } |
|
|
| export const setupGithubCommand: SlashCommand = { |
| name: 'setup-github', |
| description: 'Set up GitHub Actions', |
| kind: CommandKind.BUILT_IN, |
| action: async ( |
| context: CommandContext, |
| ): Promise<SlashCommandActionReturn> => { |
| const abortController = new AbortController(); |
|
|
| if (!isGitHubRepository()) { |
| throw new Error( |
| 'Unable to determine the GitHub repository. /setup-github must be run from a git repository.', |
| ); |
| } |
|
|
| |
| let gitRepoRoot: string; |
| try { |
| gitRepoRoot = getGitRepoRoot(); |
| } catch (_error) { |
| console.debug(`Failed to get git repo root:`, _error); |
| throw new Error( |
| 'Unable to determine the GitHub repository. /setup-github must be run from a git repository.', |
| ); |
| } |
|
|
| |
| const proxy = context?.services?.config?.getProxy(); |
| const releaseTag = await getLatestGitHubRelease(proxy); |
| const readmeUrl = `https://github.com/google-github-actions/run-gemini-cli/blob/${releaseTag}/README.md#quick-start`; |
|
|
| |
| const githubWorkflowsDir = path.join(gitRepoRoot, '.github', 'workflows'); |
| try { |
| await fs.promises.mkdir(githubWorkflowsDir, { recursive: true }); |
| } catch (_error) { |
| console.debug( |
| `Failed to create ${githubWorkflowsDir} directory:`, |
| _error, |
| ); |
| throw new Error( |
| `Unable to create ${githubWorkflowsDir} directory. Do you have file permissions in the current directory?`, |
| ); |
| } |
|
|
| |
| |
| const downloads = []; |
| for (const workflow of GITHUB_WORKFLOW_PATHS) { |
| downloads.push( |
| (async () => { |
| const endpoint = `https://raw.githubusercontent.com/google-github-actions/run-gemini-cli/refs/tags/${releaseTag}/examples/workflows/${workflow}`; |
| const response = await fetch(endpoint, { |
| method: 'GET', |
| dispatcher: proxy ? new ProxyAgent(proxy) : undefined, |
| signal: AbortSignal.any([ |
| AbortSignal.timeout(30_000), |
| abortController.signal, |
| ]), |
| } as RequestInit); |
|
|
| if (!response.ok) { |
| throw new Error( |
| `Invalid response code downloading ${endpoint}: ${response.status} - ${response.statusText}`, |
| ); |
| } |
| const body = response.body; |
| if (!body) { |
| throw new Error( |
| `Empty body while downloading ${endpoint}: ${response.status} - ${response.statusText}`, |
| ); |
| } |
|
|
| const destination = path.resolve( |
| githubWorkflowsDir, |
| path.basename(workflow), |
| ); |
|
|
| const fileStream = fs.createWriteStream(destination, { |
| mode: 0o644, |
| flags: 'w', |
| flush: true, |
| }); |
|
|
| await body.pipeTo(Writable.toWeb(fileStream)); |
| })(), |
| ); |
| } |
|
|
| |
| await Promise.all(downloads).finally(() => { |
| |
| abortController.abort(); |
| }); |
|
|
| |
| await updateGitignore(gitRepoRoot); |
|
|
| |
| const commands = []; |
| commands.push('set -eEuo pipefail'); |
| commands.push( |
| `echo "Successfully downloaded ${GITHUB_WORKFLOW_PATHS.length} workflows and updated .gitignore. Follow the steps in ${readmeUrl} (skipping the /setup-github step) to complete setup."`, |
| ); |
| commands.push(...getOpenUrlsCommands(readmeUrl)); |
|
|
| const command = `(${commands.join(' && ')})`; |
| return { |
| type: 'tool', |
| toolName: 'run_shell_command', |
| toolArgs: { |
| description: |
| 'Setting up GitHub Actions to triage issues and review PRs with Gemini.', |
| command, |
| }, |
| }; |
| }, |
| }; |
|
|