mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
[MINOR] fixed logic to find issue number from title
This commit is contained in:
parent
c16117b2e1
commit
63f37af979
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ def resolve_jira_issue(merge_branches, comment, default_jira_id=""):
|
|||
|
||||
|
||||
def resolve_jira_issues(title, merge_branches, comment):
|
||||
jira_ids = re.findall("ZEPPELIN-[0-9]{3,4,5}", title)
|
||||
jira_ids = re.findall("ZEPPELIN-[0-9]{3,5}", title)
|
||||
|
||||
if len(jira_ids) == 0:
|
||||
resolve_jira_issue(merge_branches, comment)
|
||||
|
|
|
|||
Loading…
Reference in a new issue