Merged
Conversation
Contributor
Author
|
/describe |
|
✅ PR description has been generated and updated! |
dafec2d to
822ee32
Compare
f617864 to
ed90dd7
Compare
derekmisler
commented
Feb 4, 2026
Contributor
Author
There was a problem hiding this comment.
This is almost entirely copied and pasted from the review workflow in cagent.
2a072f9 to
79d023e
Compare
…usable PR review workflow, and improves performance and reliability across the board
79d023e to
2424672
Compare
Contributor
Author
|
/describe |
|
✅ PR description has been generated and updated! |
dgageot
approved these changes
Feb 4, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds GitHub App integration to enable custom reviewer identity (comments/reviews appear as your app instead of github-actions[bot]), introduces a reusable PR review workflow for easier adoption, and improves API key handling with explicit validation and better security.
Changes
.github/workflows/review-pr.yml: New reusable workflow supporting auto-review for org members, manual/reviewtriggers, and feedback learningaction.yml: Added GitHub App token generation, explicit API key validation (fails fast if none provided), API key masking, andquietmode to suppress verbose tool outputreview-pr/action.yml: Integrated GitHub App token support with fallback to github.token.github/workflows/pr-describe.yml: Added GitHub App token generation for custom app identity in PR descriptions.github/workflows/security-scan.yml: Added GitHub App token support for security issue creationREADME.md: Updated documentation to clarify API key requirements, GitHub App setup, and newquietinputreview-pr/README.md: Comprehensive documentation for reusable workflow, GitHub App setup, and org-based auto-reviewBreaking Changes
API Key Handling: API keys now require explicit inputs (e.g.,
anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}). Environment variable fallback (env.ANTHROPIC_API_KEY) has been removed. The action now validates at startup that at least one API key is provided and fails fast with a clear error message.Migration: Update workflows to pass API keys as action inputs instead of environment variables: