Proof obligation for IsCoupling.bind in src/Bluebell/ProbabilityTheory/Coupling.lean
#47
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: AI Code Review for Lean PRs | |
| on: | |
| issue_comment: | |
| types: [created] | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| description: 'Pull Request Number' | |
| required: true | |
| type: string | |
| jobs: | |
| ai_review_lean: | |
| if: | | |
| (github.event_name == 'issue_comment' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/review') && (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER')) || | |
| (github.event_name == 'workflow_dispatch') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Run AI Code Review Action | |
| uses: alexanderlhicks/lean-review-workflow@main | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| gemini_api_key: ${{ secrets.GEMINI_API_KEY }} | |
| pr_number: ${{ github.event.issue.number || inputs.pr_number }} |