mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #40373 from ClickHouse/cherry-pick-assignees
And the last tiny fix for assignees
This commit is contained in:
commit
68e98e43ed
@ -213,7 +213,7 @@ Merge it only if you intend to backport changes to the target branch, otherwise
|
||||
)
|
||||
self.cherrypick_pr.add_to_assignees(*self.pr.assignees)
|
||||
logging.info("Assign to the author of the original PR: %s", self.pr.user.login)
|
||||
self.cherrypick_pr.add_to_assignees(*self.pr.user)
|
||||
self.cherrypick_pr.add_to_assignees(self.pr.user)
|
||||
|
||||
def create_backport(self):
|
||||
# Checkout the backport branch from the remote and make all changes to
|
||||
@ -251,7 +251,7 @@ Merge it only if you intend to backport changes to the target branch, otherwise
|
||||
)
|
||||
self.cherrypick_pr.add_to_assignees(*self.pr.assignees)
|
||||
logging.info("Assign to the author of the original PR: %s", self.pr.user.login)
|
||||
self.backport_pr.add_to_assignees(*self.pr.user)
|
||||
self.backport_pr.add_to_assignees(self.pr.user)
|
||||
|
||||
@property
|
||||
def backported(self) -> bool:
|
||||
|
Loading…
Reference in New Issue
Block a user