Skip to content
This repository was archived by the owner on Mar 14, 2023. It is now read-only.

Commit aae5805

Browse files
Prevent useless rustdoc UI tests run
1 parent ca9aae2 commit aae5805

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

highfive/configs/rust-lang/rust.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@
4747
"command": "@highfive: run-doc-ui",
4848
"reviewers": ["@GuillaumeGomez"]
4949
},
50-
"src/doc": {
51-
"message": "Some changes occurred in HTML/CSS.",
52-
"reviewers": ["@GuillaumeGomez"]
53-
},
5450
"src/librustdoc/": {
5551
"command": "@highfive: run-doc-ui"
5652
},

highfive/newpr.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ def set_assignee(self, assignee, owner, repo, issue, user, author, to_mention):
135135
msg += '\n\n'
136136
else:
137137
msg = ''
138-
message += "%s\n\ncc %s" % (msg,
139-
','.join([x for x in mention['reviewers'] if x != user]))
138+
message += "%scc %s" % (msg, ','.join([x for x in mention['reviewers'] if x != user]))
140139
cmd = mention.get('command')
141140
if cmd is not None:
142141
commands[cmd] = self.payload['pull_request', 'head', 'sha']

0 commit comments

Comments
 (0)