Skip to content

Commit bf6d64b

Browse files
committed
SPARK-4507: try to resolve issue when no JIRAs in title
1 parent 401224c commit bf6d64b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dev/merge_spark_pr.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,8 @@ def get_version_json(version_str):
278278
def resolve_jira_issues(title, merge_branches, comment):
279279
jira_ids = re.findall("SPARK-[0-9]{4,5}", title)
280280

281+
if len(jira_ids) == 0:
282+
resolve_jira_issue(merge_branches, comment)
281283
for jira_id in jira_ids:
282284
resolve_jira_issue(merge_branches, comment, jira_id)
283285

0 commit comments

Comments
 (0)