File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -1186,13 +1186,20 @@ impl<'a> RfcBotComment<'a> {
1186
1186
Self :: add_comment_url ( issue, & mut msg, status_comment_id) ;
1187
1187
msg. push_str ( "), is now **complete**." ) ;
1188
1188
1189
+ msg. push_str ( "\n \n As the automated representative of the governance process,\
1190
+ I would like to thank @") ;
1191
+ msg. push_str ( & author. login ) ;
1192
+ msg. push_str ( "for their work and everyone else who contributed." ) ;
1193
+
1189
1194
match disposition {
1190
- FcpDisposition :: Merge => { }
1195
+ FcpDisposition :: Merge => {
1196
+ msg. push_str ( "\n \n The RFC will be merged soon." ) ;
1197
+ }
1191
1198
FcpDisposition :: Close if can_ffcp_close ( issue) => {
1192
- msg. push_str ( "\n \n By the power vested in me by Rust, I hereby close this RFC ." ) ;
1199
+ msg. push_str ( "\n \n The RFC is now closed ." ) ;
1193
1200
} ,
1194
1201
FcpDisposition :: Postpone if can_ffcp_postpone ( issue) => {
1195
- msg. push_str ( "\n \n By the power vested in me by Rust, I hereby postpone this RFC ." ) ;
1202
+ msg. push_str ( "\n \n The RFC is now postponed ." ) ;
1196
1203
} ,
1197
1204
_ => { } ,
1198
1205
}
You can’t perform that action at this time.
0 commit comments