We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c8f51b8 + 1e9d643 commit 982fa68Copy full SHA for 982fa68
homu/comments.py
@@ -69,8 +69,16 @@ class Delegated(Comment):
69
params = ["delegator", "delegate"]
70
71
def render(self):
72
- message = ':v: @{} can now approve this pull request'
73
- return message.format(self.delegate)
+ message = \
+ ':v: @{delegate}, you can now approve this pull request!\n\n' + \
74
+ 'If @{delegator} told you to "`r=me`" after making some ' + \
75
+ 'further change, please make that change, then do ' + \
76
+ '`@{bot} r=@{delegator}`'
77
+ return message.format(
78
+ delegate=self.delegate,
79
+ bot=self.bot,
80
+ delegator=self.delegator
81
+ )
82
83
84
class BuildStarted(Comment):
0 commit comments