From 85126371f5705e6b3749eff73238b592c2ab91b3 Mon Sep 17 00:00:00 2001 From: "Mark J. Cox" Date: Mon, 14 Mar 2022 12:42:36 +0000 Subject: [PATCH] 3.0.0 is out so don't special case things as being deferred Reviewed-by: Paul Dale Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/tools/pull/127) --- github-tools/stale.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/github-tools/stale.py b/github-tools/stale.py index e902bdb..0ea433d 100755 --- a/github-tools/stale.py +++ b/github-tools/stale.py @@ -137,10 +137,6 @@ def parsepr(pr, days): # for example if something is for after 1.1.1 but is waiting for a CLA # then we've time to get the CLA later, it's deferred. - if (('Post 1.1.1' in labels) or - ('milestone:Post 3.0.0' in labels)): - stale["deferred after 3.0.0"].append(data) - return if ('stalled: awaiting contributor response' in labels): stale["waiting for reporter"].append(data) return