Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Only open jira tickets for 4.13 reconciliation
Browse files Browse the repository at this point in the history
The window to drive behavior change for 4.12 has passed.
Moving to 4.13.
  • Loading branch information
jupierce authored and sosiouxme committed Jan 20, 2023
1 parent 0bf6506 commit 63345a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doozerlib/cli/images_streams.py
Expand Up @@ -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()
Expand Down

0 comments on commit 63345a9

Please sign in to comment.