Skip to content

feat(l2): add ZisK zkVM backend for L2 proving #72

feat(l2): add ZisK zkVM backend for L2 proving

feat(l2): add ZisK zkVM backend for L2 proving #72

Workflow file for this run

# AI Code Review using lambdaclass/actions reusable workflows
#
# Triggers:
# - Automatically on PR open/ready_for_review
# - On-demand via PR comments: /kimi, /codex, /claude (requires write access)
#
# Custom prompt: .github/prompts/ai-review.md
#
# Required secrets:
# - KIMI_API_KEY: For Kimi reviews (https://platform.moonshot.ai/)
# - OPENAI_API_KEY: For Codex reviews (https://platform.openai.com/)
# - ANTHROPIC_API_KEY: For Claude reviews (https://console.anthropic.com/)
name: AI Code Review
on:
pull_request:
types: [opened, ready_for_review]
issue_comment:
types: [created]
permissions:
contents: read
pull-requests: write
jobs:
kimi-review:
uses: lambdaclass/actions/.github/workflows/ai-review-kimi.yml@v1
secrets:
KIMI_API_KEY: ${{ secrets.KIMI_API_KEY }}
codex-review:

Check failure on line 32 in .github/workflows/pr_ai_review.yaml

View workflow run for this annotation

GitHub Actions / AI Code Review

Invalid workflow file

The workflow is not valid. .github/workflows/pr_ai_review.yaml (Line: 32, Col: 3): Error calling workflow 'lambdaclass/actions/.github/workflows/ai-review-codex.yml@v1'. The nested job 'post_feedback' is requesting 'issues: write', but is only allowed 'issues: none'.
uses: lambdaclass/actions/.github/workflows/ai-review-codex.yml@v1
secrets:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
claude-review:
uses: lambdaclass/actions/.github/workflows/ai-review-claude.yml@v1
secrets:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}