[llvm] 0c89071 - github-automation.py: Fix mis-indented statement (#149653)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 2 02:06:51 PST 2026
Author: Kleis Auke Wolthuizen
Date: 2026-03-02T10:06:46Z
New Revision: 0c89071fa33ff0b8a719a1671f2b3551ccf0902a
URL: https://github.com/llvm/llvm-project/commit/0c89071fa33ff0b8a719a1671f2b3551ccf0902a
DIFF: https://github.com/llvm/llvm-project/commit/0c89071fa33ff0b8a719a1671f2b3551ccf0902a.diff
LOG: github-automation.py: Fix mis-indented statement (#149653)
Ensure all reviewers who approved the original PR are properly notified
and added as reviewers on backport PRs.
Resolves: #109429.
Added:
Modified:
llvm/utils/git/github-automation.py
Removed:
################################################################################
diff --git a/llvm/utils/git/github-automation.py b/llvm/utils/git/github-automation.py
index 6414a073d9c4b..2f4f805023bad 100755
--- a/llvm/utils/git/github-automation.py
+++ b/llvm/utils/git/github-automation.py
@@ -673,7 +673,7 @@ def pr_request_review(self, pr: github.PullRequest.PullRequest):
for review in pull.get_reviews():
if review.state != "APPROVED":
continue
- reviewers.append(review.user.login)
+ reviewers.append(review.user.login)
if len(reviewers):
message = "{} What do you think about merging this PR to the release branch?".format(
" ".join(["@" + r for r in reviewers])
More information about the llvm-commits
mailing list