Loading tools/lib/gitlab_forge.py +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ def does_pr_already_exist(self, from_branch): def make_pr_between_branches(self, from_branch, to_branch, title, body): if self.dry_run: print("DRY RUN: would create mr " + from_branch + " onto " + to_branch + " ; " + title + " ; " + body) return return "https://{}/#dry-run-mr/{}/{}".format(self.domain, from_branch, to_branch) url = "https://{}/api/v4/projects/{}/merge_requests".format(self.domain, self.project_id) req = requests.post(url, params={ Loading Loading
tools/lib/gitlab_forge.py +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ def does_pr_already_exist(self, from_branch): def make_pr_between_branches(self, from_branch, to_branch, title, body): if self.dry_run: print("DRY RUN: would create mr " + from_branch + " onto " + to_branch + " ; " + title + " ; " + body) return return "https://{}/#dry-run-mr/{}/{}".format(self.domain, from_branch, to_branch) url = "https://{}/api/v4/projects/{}/merge_requests".format(self.domain, self.project_id) req = requests.post(url, params={ Loading