Skip to content

Commit d125d55

Browse files
authored
github-automation.py: Set maintainer_can_modify=True for backport PRs (llvm#84819)
This makes it possible to rebase the branch using the Web UI, which makes it easier to manually merge the PRs. Manual merge is required when squash merge won't preserve author information of the backport.
1 parent 8d220d1 commit d125d55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/git/github-automation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ def create_pull_request(
586586
body=body,
587587
base=release_branch_for_issue,
588588
head=head,
589-
maintainer_can_modify=False,
589+
maintainer_can_modify=True,
590590
)
591591

592592
pull.as_issue().edit(milestone=self.issue.milestone)

0 commit comments

Comments
 (0)