From c9cb3d478d31a624c72b11bdb753d11741b6eb3b Mon Sep 17 00:00:00 2001 From: Goutham Pacha Ravi Date: Mon, 24 Nov 2025 14:12:35 -0800 Subject: [PATCH] Ignore monasca repos for legacy validation We allow .gitignore, .gitreview, README.rst to remain in a repository while retiring the repository; however, the monasca repos have a LICENSE file in addition because the repo cleanup wasn't cleanly done. It's not worth pursuing this, instead, lets just ignore these repos. Errors without this change: openstack/monasca-api is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-events-api is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-specs is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-notification is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-persister is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-tempest-plugin is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-thresh is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-common is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-ui is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/python-monascaclient is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-agent is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-statsd is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-grafana-datasource is not properly retired, files: ['.gitreview', 'LICENSE', 'README.rst']. openstack/monasca-kibana-plugin is not properly retired, files: ['.gitignore', '.gitreview', 'LICENSE', 'README.rst']. Change-Id: I864205b4cddf490fd1a0d41fff2628b9ee243704 Signed-off-by: Goutham Pacha Ravi --- tools/validate-legacy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/validate-legacy.py b/tools/validate-legacy.py index 8e56e3454..aa586b913 100755 --- a/tools/validate-legacy.py +++ b/tools/validate-legacy.py @@ -30,12 +30,14 @@ IGNORED_REPOS = [ 'openstack/cue', 'openstack/deb', 'openstack/magnetodb', + 'openstack/monasca', 'openstack/openstack-chef-repo', 'openstack/openstack-salt', 'openstack/ossa', 'openstack/python-appcatalogclient', 'openstack/python-cueclient', 'openstack/python-magnetodbclient', + 'openstack/python-monascaclient', 'openstack/refstack', 'openstack/salt', 'openstack/security-doc']