Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gh_review_project/cr_deadline.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ def remove_milestone(
open_issues = issue_data.get_milestone(milestone=milestone, status="open")

comment = (
f"[Automatic Update]\n\nThe Code Review deadline for the {milestone} has "
f"[Bulk Update]\n\nThe Code Review deadline for the {milestone} milestone has "
f"passed. As this issue does not have a linked pull request it has been "
f"removed from the milestone. Please review this issue and either select "
f"a new milestone or close it as appropriate. Please contact "
f"@MetOffice/ssdteam if you think there has been an error.\n\n Thanks"
f"MetOffice/ssdteam if you think there has been an error.\n\n Thanks"
)

for repo in open_issues:
Expand Down
4 changes: 2 additions & 2 deletions gh_review_project/finish_milestone.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ def tidy_issues(issue_data: ProjectData, milestone: str, dry_run: bool = False)

issues = issue_data.get_milestone(milestone=milestone, status="open")
comment = (
f"[Automatic Update]\n\nThe {milestone} milestone is being closed. "
f"[Bulk Update]\n\nThe {milestone} milestone is being closed. "
f"Please review this issue and either select a new milestone or "
f"close it as appropriate. Please contact @MetOffice/ssdteam if "
f"close it as appropriate. Please contact MetOffice/ssdteam if "
f"you think there has been an error.\n\n Thanks"
)
for repo in issues:
Expand Down