Skip to content

Commit 201d177

Browse files
committed
BA
1 parent a33cc19 commit 201d177

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

conda_forge_tick/status_report.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,13 @@ def graph_migrator_status(
455455
if found_entry and has_pr_url:
456456
# PR exists for the blocking migrator
457457
if pr_status == "closed":
458-
# PR is closed, migration is done
459-
out["done"].add(fake_parent)
458+
# PR is closed but package is still waiting - this is an error!
459+
out["bot-error"].add(fake_parent)
460+
print(
461+
f"Package '{node}' waiting for migrator '{migrator_name}' but PR is already closed (#{pr_data.get('number', 'N/A')}). "
462+
f"Waiting logic may be incorrect.",
463+
flush=True,
464+
)
460465
else:
461466
# PR is open or in progress
462467
out["in-pr"].add(fake_parent)

0 commit comments

Comments
 (0)