-
Notifications
You must be signed in to change notification settings - Fork 28.7k
SPARK-4507: PR merge script should support closing multiple JIRA tickets #3428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Can one of the admins verify this patch? |
This patch isn't very clear for reviewing, you moved a lot of codes. 👍 |
I'll try not to move codes more than necessary |
def resolve_jira_issues(title, merge_branches, comment): | ||
jira_ids = re.findall("SPARK-[0-9]{4,5}", title) | ||
|
||
for jira_id in jira_ids: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this change the behavior when there are no JIRAs of the correct form in the title, such that we now won't prompt the user?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed it.
Jenkins, test this please. |
Test build #23951 has started for PR 3428 at commit
|
LGTM pending tests. |
Test build #23951 has finished for PR 3428 at commit
|
Test PASSed. |
This will fix SPARK-4507.
For pull requests that reference multiple JIRAs in their titles, it would be helpful if the PR merge script offered to close all of them.