From 57ed56fb6190d2d543a8533a16ece92df413219e Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Tue, 21 Apr 2020 10:15:36 +0200
Subject: [PATCH] Disable deployments for scheduled jobs

We just want to run tests in that case
---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6e64db0..488019d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,6 +24,8 @@ linting:
     - npm run lint
 
 .deploy_defaults: &deploy_defaults
+  except:
+    - schedules
   stage: deploy
   script:
     # Add ssh key
-- 
GitLab