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>
This commit is contained in:
Lee James 2025-08-05 22:59:25 -04:00 committed by GitHub
parent b87b436ebc
commit be3aabaea6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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',