Add is-eom option to list-deliverables command

To be able to list all deliverables of a series that are tagged with
End of Maintenance, <series>-eom tag.

Change-Id: Ic1b23b45757e6ef1c250569c9e7337f8e7de39da
This commit is contained in:
Előd Illés 2024-02-01 23:12:05 +01:00 committed by Elod Illes
parent 3f84b2893d
commit 88f298c6bc

View File

@ -146,6 +146,11 @@ def main():
action='store_true',
help='limit the list to deliverables EOL in the cycle',
)
grp.add_argument(
'--is-eom',
action='store_true',
help='limit the list to deliverables EOM in the cycle',
)
grp.add_argument(
'--missing-final',
action='store_true',
@ -239,6 +244,8 @@ def main():
continue
if args.is_eol and 'eol' not in deliv.latest_release:
continue
if args.is_eom and 'eom' not in deliv.latest_release:
continue
if version_ending and deliv.is_released:
found = False
for release in deliv.releases: