Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: google-github-actions/run-gemini-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.5
Choose a base ref
...
head repository: google-github-actions/run-gemini-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.6
Choose a head ref
  • 3 commits
  • 5 files changed
  • 3 contributors

Commits on Aug 6, 2025

  1. fix: typo in gemini-pr-review.yml (#124)

    ## Summary
    
    Fix spelling errors in the gemini-pr-review workflow files
    
    Documentation:
    - Fix spelling of “Succinctness” in the code suggestions section
    - Fix spelling of “preferred” in the review comments step
    - Apply these corrections to both main and example gemini-pr-review
    workflow files
    JamBalaya56562 authored Aug 6, 2025
    Configuration menu
    Copy the full SHA
    7d94f07 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2025

  1. fix(action): Unset empty gemini_api_key environment variable (#127)

    GitHub Actions defaults to passing an empty string for optional inputs
    that are not explicitly set in a workflow. When the `gemini_api_key`
    input is unset, it is passed as an empty string to the `GEMINI_API_KEY`
    environment variable.
    
    The Gemini CLI does not handle an empty `GEMINI_API_KEY` variable
    gracefully, which can lead to unexpected behavior.
    
    This commit addresses the issue by explicitly checking if the
    `GEMINI_API_KEY` variable is empty (`-z`). If it is, the variable is
    unset before invoking the Gemini CLI. This ensures the CLI's default
    authentication behavior (e.g., using Application Default Credentials) is
    triggered correctly when no API key is provided, improving the action's
    robustness and predictability.
    
    >Note: This is a temporary workaround to unblock users. The underlying
    issue of handling empty string inputs will be addressed with improved
    validation in the Gemini CLI upstream.
    
    Fixes:
    #123
    jerop authored Aug 7, 2025
    Configuration menu
    Copy the full SHA
    df6eba2 View commit details
    Browse the repository at this point in the history
  2. Release: v0.1.6 (#128)

    ## What's Changed
    * fix: typo in `gemini-pr-review.yml` by @JamBalaya56562 in
    #124
    * fix(action): Unset empty gemini_api_key environment variable by @jerop
    in #127
    
    
    **Full Changelog**:
    v0.1.5...v0.1.6
    google-github-actions-bot authored Aug 7, 2025
    Configuration menu
    Copy the full SHA
    20351b5 View commit details
    Browse the repository at this point in the history
Loading