Post Claude Review Comment #2627
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
| # Claude Code Review — Comment Posting Workflow | |
| # | |
| # Thin wrapper around .github/workflows/ai-review-comment.yml so the provider | |
| # specific workflow name stays stable while the shared implementation lives in | |
| # one reusable workflow. | |
| name: Post Claude Review Comment | |
| on: | |
| workflow_run: | |
| workflows: ["Claude Code Review"] | |
| types: [completed] | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| review-comment: | |
| uses: ./.github/workflows/ai-review-comment.yml | |
| with: | |
| provider: claude | |
| result_artifact_name: claude-review-result | |
| comment_file: claude-review-comment.md | |
| secrets: inherit |