Repository: incubator-griffin Updated Branches: refs/heads/master f783cb78e -> 94969400f
[GRIFFIN-6] Support autoclose jira Author: William Guo <[email protected]> Closes #11 from guoyuepeng/support-autoclose-jira. Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/94969400 Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/94969400 Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/94969400 Branch: refs/heads/master Commit: 94969400f9405555fc39a8f0ab35bef2550485df Parents: f783cb7 Author: William Guo <[email protected]> Authored: Thu Mar 30 17:34:54 2017 +0800 Committer: William Guo <[email protected]> Committed: Thu Mar 30 17:34:54 2017 +0800 ---------------------------------------------------------------------- merge_pr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/94969400/merge_pr.py ---------------------------------------------------------------------- diff --git a/merge_pr.py b/merge_pr.py index 170726b..f916546 100755 --- a/merge_pr.py +++ b/merge_pr.py @@ -229,7 +229,7 @@ def fix_version_from_branch(branch, versions): return filter(lambda x: x.name.startswith(branch_ver), versions)[-1] -def resolve_jira_issue(merge_branches, comment, default_jira_id="5"): +def resolve_jira_issue(merge_branches, comment, default_jira_id="GRIFFIN-5"): asf_jira = jira.client.JIRA({'server': JIRA_API_BASE}, basic_auth=(JIRA_USERNAME, JIRA_PASSWORD))
