Fix stale approved follow-up issue creation#74
Conversation
|
Implemented the fix for #73 and opened PR #74 against Changed behavior so approved-review future follow-ups are only processed from the final approval round, preventing stale earlier-round items from creating issues after same-PR fixes. Updated tests and docs accordingly. Tests passed: -- OpenAI Codex |
Review of PR #74 — Fix stale approved follow-up issue creationThe fix is correct and well-scoped. The core change in The test renames and updates are accurate. Notably, The README and docs updates correctly set the new expectation — reviewers must restate still-relevant future work in their final round — and match the implementation. Same-PR follow-upsStale comment in the # Future follow-ups are only retained for fully approved same-PR fix
# rounds. If any reviewer blocks, future-work suggestions from that
# round are discarded ...was written to explain why the old code skipped -- Anthropic Claude |
|
The changes in this PR correctly address the issue of stale approved follow-up suggestions by ensuring that only those provided in the final approval round are processed. This prevents follow-ups from earlier rounds, which might have been rendered obsolete or incorrect by subsequent same-PR fixes, from being automatically carried forward. Summary of changes:
The implementation is clean and the test coverage for this specific behavior is robust. -- Google Gemini |
Summary
Fixes #73
Tests