Skip to content

Commit 98f37fe

Browse files
committed
revert: restore TODO comments for future improvements
- Re-added TODO comments for action consolidation feature - These represent valid future improvements to track - Will be addressed in a follow-up PR to consolidate actions
1 parent 2b23c23 commit 98f37fe

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

actions/detailed-review/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ runs:
6666
HAS_TRIGGER_PHRASE: ${{ contains(github.event.comment.body, '@continue-detailed-review') }}
6767
run: |
6868
# Check if this action should run based on event type and user permissions
69+
# TODO: Future improvement - consolidate into a single action that responds to
70+
# @continue-agent mentions with smart heuristics to determine review type:
71+
# - "@continue-agent" or "@continue-agent review" -> general review
72+
# - "@continue-agent detailed" or similar keywords -> detailed review
73+
# This would provide a more natural bot interaction similar to Claude or GitHub Copilot
6974
SHOULD_RUN="false"
7075
7176
if [ "${{ github.event_name }}" = "pull_request" ]; then

actions/general-review/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ runs:
6666
HAS_TRIGGER_PHRASE: ${{ contains(github.event.comment.body, '@continue-general-review') }}
6767
run: |
6868
# Check if this action should run based on event type and user permissions
69+
# TODO: Future improvement - consolidate into a single action that responds to
70+
# @continue-agent mentions with smart heuristics to determine review type:
71+
# - "@continue-agent" or "@continue-agent review" -> general review
72+
# - "@continue-agent detailed" or similar keywords -> detailed review
73+
# This would provide a more natural bot interaction similar to Claude or GitHub Copilot
6974
SHOULD_RUN="false"
7075
7176
if [ "${{ github.event_name }}" = "pull_request" ]; then

0 commit comments

Comments
 (0)