Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 37 additions & 2 deletions triagebot.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,52 @@
[relabel]
allow-unauthenticated = [
"needs-triage",
"S-*",
"C-*",
]

[autolabel."pr-not-reviewed"]
new_pr = true
# ------------------------------------------------------------------------------
# General autolabels
# ------------------------------------------------------------------------------

[autolabel."needs-triage"]
new_issue = true
exclude_labels = [
"C-tracking-issue",
]

# ------------------------------------------------------------------------------
# PR review
# ------------------------------------------------------------------------------

[autolabel."S-waiting-on-review"]
new_pr = true

[autolabel."S-waiting-on-author"]
new_draft = true

[review-submitted]
# This label is added when a "request changes" review is submitted.
reviewed_label = "S-waiting-on-author"
# These labels are removed when a "request changes" review is submitted.
review_labels = ["S-waiting-on-review"]

[review-requested]
# Those labels are removed when PR author requests a review from an assignee
remove_labels = ["S-waiting-on-author"]
# Those labels are added when PR author requests a review from an assignee
add_labels = ["S-waiting-on-review"]

# Adds at the end of a review body a link to view the changes that happened
# since the review
# Documentation at: https://forge.rust-lang.org/triagebot/review-changes-since.html
[review-changes-since]

# Allow reviewers and authors to easily flip between {`S-waiting-on-review`,
# `S-waiting-on-author`, `S-blocked`}.
# Documentation at: <https://forge.rust-lang.org/triagebot/shortcuts.html>
[shortcut]

# ------------------------------------------------------------------------------
# PR assignments
# ------------------------------------------------------------------------------
Expand Down
Loading