diff options
| author | Lee James <[email protected]> | 2025-08-05 22:59:25 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-06 02:59:25 +0000 |
| commit | be3aabaea6741091e7b2bd4a131f51148c7c2886 (patch) | |
| tree | d4734b18dddabffa65d09df5dee6573c8728eaf1 | |
| parent | b87b436ebce46f13701fdec0fa1e6974d604a958 (diff) | |
docs(setup-github): Inform user of the next steps after running slash command (#5644)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
| -rw-r--r-- | packages/cli/src/ui/commands/setupGithubCommand.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/cli/src/ui/commands/setupGithubCommand.ts b/packages/cli/src/ui/commands/setupGithubCommand.ts index e330cfab..445c0e76 100644 --- a/packages/cli/src/ui/commands/setupGithubCommand.ts +++ b/packages/cli/src/ui/commands/setupGithubCommand.ts @@ -44,7 +44,8 @@ export const setupGithubCommand: SlashCommand = { const fileName = path.basename(workflow); return `curl -fsSL -o "${gitRootRepo}/.github/workflows/${fileName}" "${workflowBaseUrl}/${workflow}"`; }), - 'echo "Workflows downloaded successfully."', + 'echo "Workflows downloaded successfully. Follow steps in https://github.com/google-github-actions/run-gemini-cli/blob/v0/README.md#quick-start (skipping the /setup-github step) to complete setup."', + 'open https://github.com/google-github-actions/run-gemini-cli/blob/v0/README.md#quick-start', ].join(' && '); return { type: 'tool', |
