Skip to content
Snippets Groups Projects

pkg-merge: Always submit a new MR, even with conflicts

Merged Emanuele Aina requested to merge wip/em/pkg-merge-always-submit-mr into apertis/v2022dev2
All threads resolved!
1 file
+ 4
0
Compare changes
  • Side-by-side
  • Inline
@@ -110,6 +110,10 @@ def main():
push_this_merge_request()
continue
print(f"Submit {proposed_branch} for merging into {downstream_branch} the updates from {upstream_branch}")
git("branch", proposed_branch, upstream_branch)
push_this_merge_request()
print(f"Attempt merging {upstream_branch} into {downstream_branch} via {proposed_branch}")
git("checkout", "--force", "-B", "tmp", downstream_branch)
apertis_pkg_merge_updates(f"--downstream={downstream_branch}", f"--upstream={upstream_branch}", f"--local-version-suffix={local_suffix}", _fg=True)
Loading