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!
@@ -18,9 +18,7 @@ def parse_ref(ref: str) -> str:
return git('rev-parse', '-q', '--verify', ref + '^{commit}', _ok_code=[0, 1]).strip('\n')
def ensure_branch(name: str, fallbacks: list) -> str:
if parse_ref(f'origin/{name}'):
return name
for b in fallbacks:
for b in [name, *fallbacks]:
commit = parse_ref(f'origin/{b}')
if commit:
print(f'Setting branch {name} to point to {b} ({commit:.7})')
@@ -44,7 +42,7 @@ def existing_upstream_branches(upstream: str):
def get_matching_downstream_branch(downstream: str, upstream: str):
if re.search(r'(dev[0-9]|pre)$', downstream):
return downstream
return ensure_branch(downstream, [])
else:
if upstream.endswith('-security'):
return ensure_branch(f'{downstream}-security', [f'{downstream}-updates', downstream])
Loading