From 394cf0c4e34d980be76c7dbac1345251d16962a3 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 25 Apr 2018 16:58:40 -0400 Subject: [PATCH] ignore the series_status.yaml when processing release requests The series_status.yaml file does not contain release data so process_release_requests.py should ignore it. Change-Id: I661c5a10b0497fd9112daea6d4737a5d15dc8b79 Signed-off-by: Doug Hellmann --- .../files/release-tools/process_release_requests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/copy-release-tools-scripts/files/release-tools/process_release_requests.py b/roles/copy-release-tools-scripts/files/release-tools/process_release_requests.py index 2d6ebbf40d..b20a9e321b 100755 --- a/roles/copy-release-tools-scripts/files/release-tools/process_release_requests.py +++ b/roles/copy-release-tools-scripts/files/release-tools/process_release_requests.py @@ -60,7 +60,8 @@ def find_modified_deliverable_files(reporoot): filenames = [ l.strip() for l in results.splitlines() - if l.startswith('deliverables/') + if (l.startswith('deliverables/') and + not l.endswith('series_status.yaml')) ] return filenames