build(deps): bump path-to-regexp from 0.1.12 to 0.1.13 #1
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
| # Example: copy this file to .github/workflows/preel.yml in any repo | |
| # to enable automated video reviews on pull requests. | |
| # | |
| # Required repository secrets: | |
| # OPENAI_API_KEY — OpenAI key (for TTS + optional analysis) | |
| # S3_ACCESS_KEY_ID — S3/R2 access key | |
| # S3_SECRET_ACCESS_KEY — S3/R2 secret key | |
| # CDN_BASE_URL — Public URL prefix for bucket (e.g. https://videos.example.com) | |
| # | |
| # Optional secrets: | |
| # ANTHROPIC_API_KEY — Use Claude for analysis instead of OpenAI | |
| # S3_ENDPOINT — Custom S3 endpoint (required for R2: https://<account-id>.r2.cloudflarestorage.com) | |
| # S3_REGION — AWS region (default: auto, use e.g. us-east-1 for AWS S3) | |
| name: Video Review | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| preel: | |
| uses: ambient-code/pull-reviews/.github/workflows/review.yml@main | |
| secrets: | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }} | |
| S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }} | |
| S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }} | |
| CDN_BASE_URL: ${{ secrets.CDN_BASE_URL }} | |
| with: | |
| s3_bucket: pull-reviews | |
| # preset: quick | |
| # skip_tts: true |