Code Review for #2853 : Release and reuse the clients held by ClientManager #740
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: Code Review | |
| run-name: 'Code Review for #${{ github.event.pull_request.number || inputs.pr_number }}${{ github.event.pull_request.title && format('' : {0}'', github.event.pull_request.title) }}' | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| description: Pull Request number to review | |
| required: true | |
| jobs: | |
| review: | |
| uses: scality/workflows/.github/workflows/claude-code-review.yml@v2 | |
| with: | |
| allowed-tools: >- | |
| ${{ github.event_name == 'workflow_dispatch' && '"Bash(gh api repos/*/contents)"' || '' }} | |
| secrets: inherit |