vet

Mirror of Vet, an AI code review tool
git clone git://git.laack.co/vet.git
Log | Files | Refs | README | LICENSE

vet-agentic.yml (533B)


      1 name: Vet (Agentic)
      2 
      3 permissions:
      4   contents: read
      5   pull-requests: write
      6 
      7 on:
      8   pull_request:
      9     types: [opened, edited, synchronize, reopened]
     10 
     11 jobs:
     12   vet:
     13     if: github.event.pull_request.draft == false
     14     runs-on: ubuntu-latest
     15     env:
     16       ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
     17     steps:
     18       - uses: actions/checkout@v4
     19         with:
     20           ref: ${{ github.event.pull_request.head.sha }}
     21           fetch-depth: 0
     22       - uses: ./
     23         with:
     24           agentic: true
     25           build-from-source: true