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

Commit

Permalink
set alignment bug's depends
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximinhan committed Aug 4, 2023
1 parent e62ffa7 commit b7b1a66
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doozerlib/cli/images_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,10 @@ def search_issues(query):
issue = jira_client.create_issue(
fields
)
# check depend issues and set depend to a higher version issue if ture
depend_issues = search_issues(f"Update {major}.{minor+1} {image_meta.name} image to be consistent with ART")
if depend_issues:
jira_client.create_issue_link("Depend", issue.key, depend_issues[0].key)
new_issues[distgit_key] = issue
print(f'A JIRA issue has been opened for {pr.html_url}: {issue.key}')
connect_issue_with_pr(pr, issue.key)
Expand Down

0 comments on commit b7b1a66

Please sign in to comment.