diff --git a/scripts/release_issue_status/main.py b/scripts/release_issue_status/main.py index 786d7943ab18..6cd8fc252a43 100644 --- a/scripts/release_issue_status/main.py +++ b/scripts/release_issue_status/main.py @@ -251,7 +251,10 @@ def main(): except Exception as e: item.bot_advice = 'auto-close failed, please check!' logging.info(f"=====issue: {item.issue_object.number}, {e}") - + + if 'base-branch-attention' in item.labels: + item.bot_advice = 'new version is 0.0.0, please check base branch! ' + item.bot_advice + if item.days_from_latest_commit >= 30 and item.language == 'Python' and '30days attention' not in item.labels: item.issue_object.add_to_labels('30days attention') item.issue_object.create_comment(f'hi @{item.author}, the issue is closed since there is no reply for a long time. Please reopen it if necessary or create new one.')