From be2c81b47a0f80c223ba05d2946156158c1ddfb2 Mon Sep 17 00:00:00 2001 From: Andy McCrae Date: Tue, 12 Sep 2017 11:22:06 -0600 Subject: [PATCH] Fix release-yaml-file-prep.py to include ansible-hardening Since openstack-ansible-security renamed to ansible-hardening we haven't been releasing/tagging ansible-hardening. This patch changes the regex to include ansible-hardening so we will release and tag ansible-hardening as we were before. Change-Id: Iea5f639dd7c8348167d0a7f8079de19ad5dcf8a8 --- scripts/release-yaml-file-prep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release-yaml-file-prep.py b/scripts/release-yaml-file-prep.py index 1eaffd6be6..ddf90cea1d 100755 --- a/scripts/release-yaml-file-prep.py +++ b/scripts/release-yaml-file-prep.py @@ -109,7 +109,7 @@ def main(): projects = [] # Prepare the regex match - regex = re.compile('^.*openstack/openstack-ansible.*$') + regex = re.compile('^.*openstack/(ansible-hardening|openstack-ansible.*)$') # Loop through the list of roles for role_data in reqs: