Avoid duplicate paired follow-up scheduling

This commit is contained in:
ejclaw
2026-04-06 21:09:46 +09:00
parent 75bbeac703
commit 1a6ffa55af
3 changed files with 188 additions and 3 deletions

View File

@@ -127,9 +127,7 @@ export function resolvePairedFollowUpQueueAction(args: {
return args.completedRole === 'reviewer' &&
args.taskStatus === 'merge_ready'
? 'skip-inline-finalize'
: args.taskStatus !== 'completed'
? 'generic'
: 'none';
: 'none';
}
const shouldRequeuePendingPairedTurn =