Merge "ignore the series_status.yaml when processing release requests"

This commit is contained in:
Zuul 2018-04-27 09:41:46 +00:00 committed by Gerrit Code Review
commit e9de791b5f

View File

@ -61,7 +61,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