We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a33cc19 commit 201d177Copy full SHA for 201d177
conda_forge_tick/status_report.py
@@ -455,8 +455,13 @@ def graph_migrator_status(
455
if found_entry and has_pr_url:
456
# PR exists for the blocking migrator
457
if pr_status == "closed":
458
- # PR is closed, migration is done
459
- out["done"].add(fake_parent)
+ # PR is closed but package is still waiting - this is an error!
+ 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
+ )
465
else:
466
# PR is open or in progress
467
out["in-pr"].add(fake_parent)
0 commit comments