-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add some more autolabels #103204
Add some more autolabels #103204
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
@bors rollup |
@bors r+ |
Add some more autolabels
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#101889 (doc: rewrite doc for uint::{carrying_add,borrowing_sub}) - rust-lang#102507 (More slice::partition_point examples) - rust-lang#103164 (rustdoc: remove CSS ``@media` (min-width: 701px)`) - rust-lang#103189 (Clean up code-color and headers-color rustdoc GUI tests) - rust-lang#103203 (Retrieve LLVM version from llvm-filecheck binary if it is not set yet) - rust-lang#103204 (Add some more autolabels) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
@@ -203,6 +208,38 @@ trigger_files = [ | |||
"compiler/rustc_macros/src/query.rs" | |||
] | |||
|
|||
[autolabel."A-testsuite"] | |||
trigger_files = [ | |||
"src/test", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this from the autolabel? This causes basically every compiler PR to be labeled A-testsuite, since almost every compiler PR has an associated UI test with it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, makes sense. Not sure when I'll have time though.
Don't label `src/test` tests as `A-testsuite` Nearly every PR modifies `src/test`; A-testsuite is meant to be for things affecting the test runners themselves. cc rust-lang#103204 (comment) r? `@jyn514`
@@ -181,6 +181,11 @@ trigger_files = [ | |||
"x.py", | |||
"src/bootstrap", | |||
"src/tools/rust-installer", | |||
"configure", | |||
"Cargo.toml", | |||
"Cargo.lock", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this one supposed to be here? Adding any dependency to any rustc crate now makes the bot add the A-bootstrap
label.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't add A-bootstrap to PRs modifying Cargo.lock Changing Cargo.lock is common even when adding dependencies between existing rustc crates. cc rust-lang#103204 (comment), `@m-ou-se`
No description provided.