diff options
Diffstat (limited to 'labbot/addons/merge-stable.py')
-rw-r--r-- | labbot/addons/merge-stable.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/labbot/addons/merge-stable.py b/labbot/addons/merge-stable.py index 493887f..1a2904f 100644 --- a/labbot/addons/merge-stable.py +++ b/labbot/addons/merge-stable.py @@ -51,8 +51,9 @@ async def issue_update_hook(event, gl, *args, **kwargs): "source_branch": branch, "target_branch": config["stable_branch"] }): - if merge_data["state"] == "opened": - merge_exists = True + # We have found a merge request, we cannot sanely re-merge again. + merge_exists = True + break if merge_exists: log.debug(f"merge for `{branch}` already exists") |