Skip to content

Add github workflow #23

Add github workflow

Add github workflow #23

Workflow file for this run

# Basic PR Review Generation
# Automatically generates AI-powered reviews for new pull requests
name: Auto-review PRs
on:
pull_request:
types: [opened]
jobs:
review:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Generate PR Review
uses: augmentcode/review-pr@v0
with:
augment_session_auth: ${{ secrets.AUGMENT_SESSION_AUTH }}
github_token: ${{ secrets.GITHUB_TOKEN }}
pull_number: ${{ github.event.pull_request.number }}
repo_name: ${{ github.repository }}