You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,10 +190,16 @@ go to the [Gemini Assistant workflow documentation](./examples/workflows/gemini-
190
190
191
191
- <aname="__input_upload_artifacts"></a><ahref="#user-content-__input_upload_artifacts"><code>upload_artifacts</code></a>: _(Optional, default: `false`)_ Whether to upload artifacts to the github action.
192
192
193
+
- <aname="__input_output_to_file"></a><ahref="#user-content-__input_output_to_file"><code>output_to_file</code></a>: _(Optional, default: `false`)_ When true, redirect all output to files and return file paths as step outputs instead of content. Useful when gemini_debug is true to avoid exceeding GitHub Actions output limits.
194
+
193
195
- <aname="__input_use_pnpm"></a><ahref="#user-content-__input_use_pnpm"><code>use_pnpm</code></a>: _(Optional, default: `false`)_ Whether or not to use pnpm instead of npm to install gemini-cli
194
196
195
197
- <aname="__input_workflow_name"></a><ahref="#user-content-__input_workflow_name"><code>workflow_name</code></a>: _(Optional, default: `${{ github.workflow }}`)_ The GitHub workflow name, used for telemetry purposes.
196
198
199
+
- <aname="__input_github_pr_number"></a><ahref="#user-content-__input_github_pr_number"><code>github_pr_number</code></a>: _(Optional, default: `${{ github.event.pull_request.number }}`)_ The Pull Request number the CLI is operating on. Defaults to the event payload.
200
+
201
+
- <aname="__input_github_issue_number"></a><ahref="#user-content-__input_github_issue_number"><code>github_issue_number</code></a>: _(Optional, default: `${{ github.event.issue.number }}`)_ The Issue number (or comma-separated list of issue numbers) the CLI is operating on. Defaults to the event payload.
202
+
197
203
198
204
<!-- END_AUTOGEN_INPUTS -->
199
205
<!-- prettier-ignore-end -->
@@ -207,6 +213,10 @@ go to the [Gemini Assistant workflow documentation](./examples/workflows/gemini-
207
213
208
214
- <aname="__output_error"></a><ahref="#user-content-__output_error"><code>error</code></a>: The error output from the Gemini CLI execution, if any.
209
215
216
+
- <aname="__output_output_mode"></a><ahref="#user-content-__output_output_mode"><code>output_mode</code></a>: Output mode used: "content" (default) or "file".
217
+
218
+
- <aname="__output_artifacts_dir"></a><ahref="#user-content-__output_artifacts_dir"><code>artifacts_dir</code></a>: Path to gemini-artifacts/ directory containing stdout.log, stderr.log, telemetry.log.
0 commit comments