Update series bugtasks status on stable/* changes
Makes update_bug.py Gerrit/LP hook support setting series-specific bug tasks to FixCommitted status on change-merged to stable/* branches. Fixes bug 921588. Also sets "In Progress" on patchset-created to stable/*. Change-Id: I5e3b7c8d249755a71f3425dd33151764be2a1485
This commit is contained in:
parent
735715899c
commit
c7ceb721f6
@ -145,8 +145,18 @@ def process_bugtask(launchpad, bugtask, git_log, args):
|
|||||||
set_fix_committed(bugtask)
|
set_fix_committed(bugtask)
|
||||||
elif args.branch == 'milestone-proposed':
|
elif args.branch == 'milestone-proposed':
|
||||||
release_fixcommitted(bugtask)
|
release_fixcommitted(bugtask)
|
||||||
else:
|
elif args.branch.startswith('stable/'):
|
||||||
tag_in_branchname(bugtask, args.branch)
|
series = args.branch[7:]
|
||||||
|
# Look for a related task matching the series
|
||||||
|
for reltask in bugtask.related_tasks:
|
||||||
|
if reltask.bug_target_name.endswith("/" + series):
|
||||||
|
# Use fixcommitted if there is any
|
||||||
|
set_fix_committed(reltask)
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
# Use tagging if there isn't any
|
||||||
|
tag_in_branchname(bugtask, args.branch)
|
||||||
|
|
||||||
add_change_merged_message(bugtask, args.change_url, args.project,
|
add_change_merged_message(bugtask, args.change_url, args.project,
|
||||||
args.commit, args.submitter, args.branch,
|
args.commit, args.submitter, args.branch,
|
||||||
git_log)
|
git_log)
|
||||||
@ -154,6 +164,14 @@ def process_bugtask(launchpad, bugtask, git_log, args):
|
|||||||
if args.hook == "patchset-created":
|
if args.hook == "patchset-created":
|
||||||
if args.branch == 'master':
|
if args.branch == 'master':
|
||||||
set_in_progress(bugtask, launchpad, args.uploader, args.change_url)
|
set_in_progress(bugtask, launchpad, args.uploader, args.change_url)
|
||||||
|
elif args.branch.startswith('stable/'):
|
||||||
|
series = args.branch[7:]
|
||||||
|
for reltask in bugtask.related_tasks:
|
||||||
|
if reltask.bug_target_name.endswith("/" + series):
|
||||||
|
set_in_progress(reltask, launchpad,
|
||||||
|
args.uploader, args.change_url)
|
||||||
|
break
|
||||||
|
|
||||||
if args.patchset == '1':
|
if args.patchset == '1':
|
||||||
add_change_proposed_message(bugtask, args.change_url,
|
add_change_proposed_message(bugtask, args.change_url,
|
||||||
args.project, args.branch)
|
args.project, args.branch)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user