Skip to content

Proof obligation for IsCoupling.bind in src/Bluebell/ProbabilityTheory/Coupling.lean #47

Proof obligation for IsCoupling.bind in src/Bluebell/ProbabilityTheory/Coupling.lean

Proof obligation for IsCoupling.bind in src/Bluebell/ProbabilityTheory/Coupling.lean #47

Workflow file for this run

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 }}