@@ -139,7 +139,10 @@ def retest(
139
139
new_comment_body = self .remove_chroot_html_comment (
140
140
comment_body = new_comment_body , chroot = chroot
141
141
)
142
- issue .edit (body = new_comment_body , title = self .github .issue_title )
142
+ issue .edit (
143
+ body = new_comment_body ,
144
+ title = self .github .issue_title (strategy = strategy , yyyymmdd = yyyymmdd ),
145
+ )
143
146
144
147
# Kick off a new workflow run and pass the exact date in YYYYMMDD
145
148
# form because we don't know if the issue was for today
@@ -222,7 +225,7 @@ def check_todays_builds(self) -> None:
222
225
{ build_status_matrix }
223
226
{ tf .TestingFarmRequest .dict_to_html_comment (requests )}
224
227
"""
225
- issue .edit (body = comment_body , title = self .github .issue_title )
228
+ issue .edit (body = comment_body , title = self .github .issue_title () )
226
229
227
230
logging .info ("Filter testing-farm requests by chroot of interest" )
228
231
new_requests = dict ()
@@ -388,7 +391,7 @@ def check_todays_builds(self) -> None:
388
391
{ build_status_matrix }
389
392
{ tf .TestingFarmRequest .dict_to_html_comment (requests )}
390
393
"""
391
- issue .edit (body = comment_body , title = self .github .issue_title )
394
+ issue .edit (body = comment_body , title = self .github .issue_title () )
392
395
393
396
logging .info ("Checking if issue can be closed" )
394
397
# issue.update()
@@ -407,7 +410,9 @@ def check_todays_builds(self) -> None:
407
410
logging .info (msg )
408
411
issue .create_comment (body = msg )
409
412
issue .edit (
410
- state = "closed" , state_reason = "completed" , title = self .github .issue_title
413
+ state = "closed" ,
414
+ state_reason = "completed" ,
415
+ title = self .github .issue_title (),
411
416
)
412
417
# TODO(kwk): Promotion of issue goes here.
413
418
else :
0 commit comments