From 63345a9b22b9033537945448d3ec4d8563219ccf Mon Sep 17 00:00:00 2001 From: Justin Pierce Date: Fri, 20 Jan 2023 10:19:33 -0500 Subject: [PATCH] Only open jira tickets for 4.13 reconciliation The window to drive behavior change for 4.12 has passed. Moving to 4.13. --- doozerlib/cli/images_streams.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doozerlib/cli/images_streams.py b/doozerlib/cli/images_streams.py index 74346fba3..12bfae162 100644 --- a/doozerlib/cli/images_streams.py +++ b/doozerlib/cli/images_streams.py @@ -616,8 +616,8 @@ def reconcile_jira_issues(runtime, pr_links: Dict[str, str], dry_run: bool): dry_run: If true, new desired jira issues would only be printed to the console. """ major, minor = runtime.get_major_minor_fields() - if (major == 4 and minor < 12) or major < 4: - # Only enabled for 4.12 and beyond at the moment. + if (major == 4 and minor < 13) or major < 4: + # Only enabled for 4.13 and beyond at the moment. return new_issues: Dict[str, Issue] = dict()