From 3b1fd52b41aaa1c616c056c1a17363e1bd2736b6 Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Wed, 23 Nov 2022 20:04:50 +0100 Subject: [PATCH] Exclude neutron-dynamic-routing from abandon script We managed to have no backlog of open patches for the neutron-dynamic-routing project currently. If new patches arrive, they may take longer to be reviewed though due to scarceness of reviewers. So do not handle this project by the script for auto-abandoning reviews. Change-Id: I8a8de62d75927fd6def7e31068f9a5741bb39ba4 --- tools/abandon_old_reviews.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/abandon_old_reviews.sh b/tools/abandon_old_reviews.sh index cc5170b0900..bee03f257b9 100755 --- a/tools/abandon_old_reviews.sh +++ b/tools/abandon_old_reviews.sh @@ -103,7 +103,9 @@ project = "$CLEAN_PROJECT" data = urlopen("https://raw.githubusercontent.com/openstack/" "governance/master/reference/projects.yaml") governance = yaml.safe_load(data) -stadium = governance["neutron"]["deliverables"].keys() +stadium = governance["neutron"]["deliverables"] +stadium.pop('neutron-dynamic-routing', None) +stadium = stadium.keys() query = ["project:openstack/%s" % p for p in stadium] if project: print(project if project in query else "")