Git commit dee0fcf5758f63f22f7735faa5b197d2fe266069 by Ben Cooksley. Committed on 02/10/2022 at 04:10. Pushed by bcooksley into branch 'master'.
Don't purge the CI artifacts for Plasma/5.25. Apparently the Plasma developers are still planning further releases of this, at least if their Git repositories are anything to go by. CCMAIL: plasma-devel@kde.org M +1 -1 package-registry-cleanup.py https://invent.kde.org/sysadmin/ci-utilities/commit/dee0fcf5758f63f22f7735faa5b197d2fe266069 diff --git a/package-registry-cleanup.py b/package-registry-cleanup.py index 6605b36..a66e805 100644 --- a/package-registry-cleanup.py +++ b/package-registry-cleanup.py @@ -45,7 +45,7 @@ for package in remoteRegistry.packages.list( as_list=False ): } # Is this a stale branch we can let go of? - if branch in ['release-21.08', 'release-21.12', 'release-22.04', 'Plasma-5.25']: + if branch in ['release-21.08', 'release-21.12', 'release-22.04']: # Then mark it for removal packagesToRemove.append( packageData['package'] ) continue