From 5847145fb42f00483a265f66c875e3066e4d4547 Mon Sep 17 00:00:00 2001
From: Felix Gerking <felix.gerking@garz-fricke.com>
Date: Thu, 24 Feb 2022 14:28:44 +0100
Subject: [PATCH] Change integration project name to lower case

The project name is matched with the predefined gitlab var CI_PROJECT_NAME,
which uses lower case.
---
 common.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common.py b/common.py
index 2f1d4b24..d65e5420 100755
--- a/common.py
+++ b/common.py
@@ -17,7 +17,7 @@ pending_states = ["created", "waiting_for_resource", "preparing", "pending", "ru
 
 def integration_branch_name(project_name, branch_name):
     """Get integration branch name"""
-    return "integrate/" + project_name + "/" + branch_name
+    return "integrate/" + project_name.lower() + "/" + branch_name
 
 
 def get_project(gitlab, project_name):
-- 
GitLab