Manage S-waiting-on-author and S-waiting-on-review automatically

This commit is contained in:
Fabing Li 2024-10-24 06:41:03 +00:00 committed by Tate, Hongliang Tian
parent fe8e451c4f
commit 601040f2fa
1 changed files with 13 additions and 0 deletions

View File

@ -29,3 +29,16 @@ cc = ["@grief8"]
# @boterinas blocked - This indicates that a PR is blocked on something.
# @boterinas ready - This indicates that a PR is ready for review.
# @boterinas review or @boterinas reviewer are aliases for ready.
# This feature will automatically adjust the labels on a pull request when a reviewer sends a review with changes requested.
[review-submitted]
# This label is added when clicking the “Request Changes” option.
reviewed_label = "S-waiting-on-author"
# These labels are removed when clicking the “Request Changes” option.
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"]