Feat: Enhance trigger configuration with granular controls and concurrency management#24
Merged
HungKNguyen merged 5 commits intomainfrom Feb 13, 2026
Merged
Conversation
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 fine-grained trigger controls and concurrency management to the code review action, giving users better control over when reviews run and preventing duplicate/wasteful reviews.
Key Changes
Trigger Configuration
trigger-on-open- Run on PR open/reopen (default: true)trigger-on-commit- Run on every commit (default: false)trigger-on-review-request- Run when review requested (default: true)trigger-on-mention- Run when bot mentioned in comments (default: true)run-every-commitin favor of newtrigger-on-commitoption@bot-namein PR commentsConcurrency Control
concurrencygroup to prevent simultaneous runs on same PRFiltering Configuration
enable-heuristic-filtering- Pattern-based filtering (default: true)enable-claude-filtering- Claude API validation (default: false)Implementation Details
scripts/determine-claudecode-enablement.shissue_commentevents to handle bot mentionsgithub-actions[bot]and custom GitHub Apps)pull_requestandissue_commenteventsTest Plan
Backwards Compatibility
All changes are backwards compatible:
run-every-commitstill works but shows deprecation warningThis PR focuses on the configuration enhancements and trigger mechanism improvements based on the commit message "enhance configuration and trigger" and the extensive changes to trigger logic,
filtering options, and concurrency control.