diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2024-02-27 12:44:25 +0100 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2024-02-27 12:44:25 +0100 |
commit | 4bfcf683ac3c101edbf62718a9937c89c0abbee2 (patch) | |
tree | 53082fb468e9a7b97b50e467fde74ea5a0e135b8 /labbot | |
parent | 39b269e2a01dc88f46cca8ef344fcef416274b36 (diff) | |
download | lab-bot-4bfcf683ac3c101edbf62718a9937c89c0abbee2.tar.gz lab-bot-4bfcf683ac3c101edbf62718a9937c89c0abbee2.zip |
correct stable merge check
we wrongly inverted the logic, resulting in merges that should have happened failing. Wompwomp
Diffstat (limited to 'labbot')
-rw-r--r-- | labbot/addons/merge-stable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/labbot/addons/merge-stable.py b/labbot/addons/merge-stable.py index 9b2f133..817911f 100644 --- a/labbot/addons/merge-stable.py +++ b/labbot/addons/merge-stable.py @@ -72,7 +72,7 @@ async def issue_update_hook(event, gl, *args, **kwargs): create_stable_merge = False break - if create_stable_merge: + if not create_stable_merge: log.debug(f"merges for `{branch}` already exists, not opening more than 3") else: merge_string = ", ".join(merge) |