From 240ccdf0e4db37ed4aebf7811b87db54fa0c1ac6 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Mon, 25 Jan 2021 16:09:03 +0100
Subject: [PATCH] gitlab-ci-cd/drupal#2 Add support for variable
 INITIAL_INSTALL set to yes to trigger the initial installation of a Drupal
 site without DB and without tests

---
 test-and-deploy.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/test-and-deploy.yml b/test-and-deploy.yml
index 67d15c4..5ec9887 100644
--- a/test-and-deploy.yml
+++ b/test-and-deploy.yml
@@ -97,6 +97,8 @@ stages:
     INITIALINSTALL="no"
     if [[ "$CI_COMMIT_MESSAGE" == *"[INITIAL_INSTALL]"* ]]; then
       INITIALINSTALL="yes"
+    elif [[ "$INITIAL_INSTALL" == "yes" ]]; then
+      INITIALINSTALL="yes"
     fi
     echo "INITIALINSTALL=${INITIALINSTALL}" >> validation.env
   except:
-- 
GitLab