Skip to content

Commit 9c230f3

Browse files
committed
Auto merge of #69336 - Mark-Simulacrum:no-infra-toolstate, r=Dylan-DPC
Do not ping the infrastructure team on toolstate changes To my knowledge, there is essentially never any particular action that the infra team needs to take on these pings, and they are currently relatively annoying. cc rust-lang/infra -- does anyone *want* these notifications?
2 parents 1484196 + e7ee42b commit 9c230f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/publish_toolstate.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,14 +211,14 @@ def update_latest(
211211
if new > old:
212212
# things got fixed or at least the status quo improved
213213
changed = True
214-
message += '🎉 {} on {}: {} → {} (cc {}, @rust-lang/infra).\n' \
214+
message += '🎉 {} on {}: {} → {} (cc {}).\n' \
215215
.format(tool, os, old, new, maintainers)
216216
elif new < old:
217217
# tests or builds are failing and were not failing before
218218
changed = True
219219
title = '💔 {} on {}: {} → {}' \
220220
.format(tool, os, old, new)
221-
message += '{} (cc {}, @rust-lang/infra).\n' \
221+
message += '{} (cc {}).\n' \
222222
.format(title, maintainers)
223223
# See if we need to create an issue.
224224
if tool == 'miri':

0 commit comments

Comments
 (0)