refactor: simplify generateContent method in LlmRepository by removing unnecessary checks and streamlining error handling #62
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: TypeScript Deep Code Review | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| types: [opened, synchronize, reopened] | |
| workflow_dispatch: | |
| inputs: | |
| pr-number: | |
| description: 'Pull request number to review' | |
| required: true | |
| type: number | |
| jobs: | |
| code-review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build action | |
| run: pnpm build | |
| - name: TypeScript Deep Code Review | |
| uses: ./. | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| gemini-api-key: ${{ secrets.LLM_API_KEY }} | |
| auto-approve: true | |
| index-cache-enabled: true | |
| pr-number: ${{ github.event.inputs.pr-number }} | |
| output-language: en | |
| quality-threshold: 7 |