Skip to content

Commit 7217a78

Browse files
[Internal] Docs: Update PR monitoring frequency to 5-10 minutes (#5603)
## Description 🤖 **This PR was authored by GitHub Copilot** Updates PR monitoring guidance to specify consistent 5-10 minute intervals for both CI and review comment checks. ## Changes **Before:** ```yaml frequency: "Check every session or when user requests status" ``` **After:** ```yaml frequency: "Every 5-10 minutes while session is active" monitoring_loop: interval: "5-10 minutes" check_ci: "gh pr checks {pr_number}" check_comments: "gh api .../pulls/{pr_number}/comments" check_reviews: "gh pr view {pr_number} --json reviews,reviewDecision" ``` ## Why - Consistent monitoring frequency for CI and comments - Clear commands for each check type - Explicit actions for each monitoring outcome --- *Generated by GitHub Copilot CLI Agent*
1 parent 65688ee commit 7217a78

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/agents/issue-fix-agent.agent.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4315,9 +4315,18 @@ pr_review_monitoring:
43154315
43164316
when_to_monitor:
43174317
trigger: "After PR is marked ready for review"
4318-
frequency: "Check every session or when user requests status"
4318+
frequency: "Every 5-10 minutes while session is active"
43194319
until: "PR is merged OR closed"
43204320
4321+
monitoring_loop:
4322+
interval: "5-10 minutes"
4323+
check_ci: "gh pr checks {pr_number}"
4324+
check_comments: "gh api repos/{owner}/{repo}/pulls/{pr_number}/comments --jq '.[].created_at' | Select-Object -Last 1"
4325+
check_reviews: "gh pr view {pr_number} --json reviews,reviewDecision"
4326+
on_new_comment: "Read comment, address feedback, push fix, reply with commit SHA"
4327+
on_ci_failure: "Investigate, fix, push"
4328+
on_approval: "Merge or wait for additional approvals"
4329+
43214330
check_for_reviews:
43224331
command: "gh pr view {pr_number} --json reviews,reviewRequests,comments"
43234332
also_check: "gh pr view {pr_number} --json reviewDecision"

0 commit comments

Comments
 (0)