Skip to content

Commit 04eecce

Browse files
authored
Fix docs gen and package.json (#19)
1 parent 556f347 commit 04eecce

4 files changed

Lines changed: 56 additions & 5 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,20 @@ environment variables, and secrets.
5353
### Inputs
5454

5555
<!-- BEGIN_AUTOGEN_INPUTS -->
56+
57+
- <a name="prompt"></a><a href="#user-content-prompt"><code>prompt</code></a>: _(Optional, default: `You are a helpful assistant.`)_ A specific prompt to guide Gemini.
58+
59+
- <a name="settings_json"></a><a href="#user-content-settings_json"><code>settings_json</code></a>: _(Optional)_ A JSON string to configure the Gemini CLI. This will be written to
60+
.gemini/settings.json.
61+
62+
5663
<!-- END_AUTOGEN_INPUTS -->
5764

5865
### Outputs
5966

6067
<!-- BEGIN_AUTOGEN_OUTPUTS -->
68+
69+
6170
<!-- END_AUTOGEN_OUTPUTS -->
6271

6372
### Environment Variables

action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ runs:
101101
run: |
102102
gemini --yolo --prompt "${PROMPT}"
103103
104+
outputs: {}
105+
104106
branding:
105107
icon: 'terminal'
106108
color: 'blue'

package-lock.json

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "This works with our versioning tools, this is NOT an NPM repo",
55
"scripts": {
66
"build": "echo \"No build required for composite action\"",
7+
"docs": "./node_modules/.bin/actions-gen-readme",
78
"test": "echo \"Error: no test specified\" && exit 1"
89
},
910
"engines": {
@@ -12,13 +13,19 @@
1213
},
1314
"repository": {
1415
"type": "git",
15-
"url": "git+https://github.com/google-github-actions/run-vertexai-notebook.git"
16+
"url": "git+https://github.com/google-github-actions/run-gemini-cli.git"
1617
},
17-
"keywords": [],
18-
"author": "",
18+
"keywords": [
19+
"gemini",
20+
"gemini-cli"
21+
],
22+
"author": "Google",
1923
"license": "Apache-2.0",
2024
"bugs": {
21-
"url": "https://github.com/google-github-actions/run-vertexai-notebook/issues"
25+
"url": "https://github.com/google-github-actions/run-gemini-cli/issues"
2226
},
23-
"homepage": "https://github.com/google-github-actions/run-vertexai-notebook#readme"
27+
"homepage": "https://github.com/google-github-actions/run-gemini-cli#readme",
28+
"devDependencies": {
29+
"@google-github-actions/actions-utils": "^0.8.8"
30+
}
2431
}

0 commit comments

Comments
 (0)