You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 14, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: highfive/newpr.py
+18-13Lines changed: 18 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -30,23 +30,28 @@
30
30
31
31
If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. The way Github handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.
32
32
33
-
Please see [CONTRIBUTING.md](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md) for more information.
33
+
Please see [the contribution instructions](%s) for more information.
34
34
"""
35
35
36
36
37
-
defwelcome_msg(reviewer):
37
+
defwelcome_msg(reviewer, config):
38
38
ifreviewerisNone:
39
39
text=welcome_without_reviewer
40
40
else:
41
41
text=welcome_with_reviewer%reviewer
42
-
returnraw_welcome%text
42
+
# Default to the Rust contribution guide if "contributing" wasn't set
0 commit comments