diff options
| author | Philipp Krones <hello@philkrones.com> | 2025-07-02 15:24:32 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-02 15:24:32 +0000 |
| commit | 8b034bc5989c084b88776ca77aa511c80caa906e (patch) | |
| tree | 03cc2abd2d3c10194f6007b0b14a5a061b9033b9 | |
| parent | 8e4b5448cf9274b4216366273ecd0b7b9c17420b (diff) | |
| parent | fc076315d298c9cdef6baf770d9492f56e920c92 (diff) | |
| download | rust-8b034bc5989c084b88776ca77aa511c80caa906e.tar.gz rust-8b034bc5989c084b88776ca77aa511c80caa906e.zip | |
Add Triagebot's `concern` capability to the Clippy repository (#14916)
This is a newly added triagebot capability, which allows registering and then resolving concerns with an issue or a pull request. The concerns are gathered by Triagebot in the issue/PR summary. Concerns are different from notes: when a concern is resolved, it is striked through in the issue/PR summary, and a link to the comment resolving it is also added, whereas a note can only be removed and then disappears from the summary. The `has-concerns` label, which must be created at the time of merging this change, will be automatically set on issues/PRs that have unresolved concerns, and cleared when all concerns are resolved. changelog: none
| -rw-r--r-- | triagebot.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/triagebot.toml b/triagebot.toml index 4f370758c00..b7a8749fbaa 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -43,6 +43,10 @@ reviewed_label = "S-waiting-on-author" [autolabel."S-waiting-on-review"] new_pr = true +[concern] +# These labels are set when there are unresolved concerns, removed otherwise +labels = ["S-waiting-on-concerns"] + [assign] contributing_url = "https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md" users_on_vacation = [ |
