Fuzz tests update #42
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Polka Codes Review PR Handler | |
| on: | |
| pull_request: | |
| types: [opened] | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| description: 'PR number to review' | |
| required: true | |
| type: number | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: review-pr-${{ github.event.inputs.pr_number || github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| review_gemini: | |
| name: Review With Gemini | |
| timeout-minutes: 40 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Google Auth | |
| uses: google-github-actions/auth@v2 | |
| with: | |
| credentials_json: ${{ secrets.GOOGLE_CREDENTIALS }} | |
| - name: Run Polka Codes (Gemini) | |
| uses: polka-codes/action@master | |
| with: | |
| pr_number: ${{ github.event.inputs.pr_number || github.event.number }} | |
| review: true | |
| env: | |
| POLKA_API_PROVIDER: google-vertex | |
| POLKA_MODEL: gemini-3-pro-preview | |
| GITHUB_TOKEN: ${{ github.token }} | |
| GOOGLE_VERTEX_LOCATION: global | |
| GOOGLE_VERTEX_PROJECT: ${{ secrets.GOOGLE_VERTEX_PROJECT }} |