Skip to content

Commit e5d9dbf

Browse files
authored
fix(.github/workflows): remove unexpected inputs from gemini-cli workflows (#4671)
The github_pr_number and github_issue_number inputs are removed from the with section of the google-github-actions/run-gemini-cli@v0 action in .github/workflows/gemini-invoke.yml and .github/workflows/gemini-plan-execute.yml. These inputs are not supported by the action and were causing "Unexpected input(s)" warnings during workflow runs. Fixes #4668
1 parent cd2b6a9 commit e5d9dbf

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

.github/workflows/gemini-invoke.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ jobs:
3838
with:
3939
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
4040
workflow_name: 'gemini-invoke'
41-
github_pr_number: '${{ github.event.pull_request.number }}'
42-
github_issue_number: '${{ github.event.issue.number }}'
4341
settings: |-
4442
{
4543
"model": {

.github/workflows/gemini-plan-execute.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ jobs:
3939
with:
4040
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
4141
workflow_name: 'gemini-plan-execute'
42-
github_pr_number: '${{ github.event.pull_request.number }}'
43-
github_issue_number: '${{ github.event.issue.number }}'
4442
settings: |-
4543
{
4644
"model": {

0 commit comments

Comments
 (0)