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:
parent
b87b436ebc
commit
be3aabaea6
|
@ -44,7 +44,8 @@ export const setupGithubCommand: SlashCommand = {
|
||||||
const fileName = path.basename(workflow);
|
const fileName = path.basename(workflow);
|
||||||
return `curl -fsSL -o "${gitRootRepo}/.github/workflows/${fileName}" "${workflowBaseUrl}/${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(' && ');
|
].join(' && ');
|
||||||
return {
|
return {
|
||||||
type: 'tool',
|
type: 'tool',
|
||||||
|
|
Loading…
Reference in New Issue