From d9660a80edc09242d507077a4059531a057f3184 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jonas=20H=C3=B6ppner?= <jonas.hoeppner@garz-fricke.com>
Date: Mon, 13 Jun 2022 16:30:01 +0200
Subject: [PATCH] build-jobs.jinja2: Specify master branch variable again

If the MASTER_BRANCH_MANIFEST variable is set in the manifest's
.gitlab-ci.yml file, it may not find its way to the generated job,
if it is not explicitly set during generation.
That is done with this patch.
---
 build-jobs.jinja2 | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build-jobs.jinja2 b/build-jobs.jinja2
index 3aa26b4..e3638a3 100644
--- a/build-jobs.jinja2
+++ b/build-jobs.jinja2
@@ -17,6 +17,9 @@ include:
     ref: {{ gitlab_ci_current_rev }}
     file: 'manifest-package.yml'
 
+variables:
+  MASTER_BRANCH_MANIFEST: {{ master_branch_manifest }}
+
 workflow:
   rules:
     # This rule is needed, as otherwise the workflow:rules from
-- 
GitLab