From ef789b4ece585fa77d85ddd2305db847967d4e5a Mon Sep 17 00:00:00 2001
From: Update Bot <update-bot@private.storage>
Date: Fri, 22 Jul 2022 12:42:32 -0400
Subject: [PATCH] Remove the redundant `when: "always"`

The default is `when: "on_success"` which is equivalent to "always" since we
have no stages.
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5be10e26..14d8e4b4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,7 +15,7 @@
 .schedule_rules: &RUN_ON_SCHEDULE
   rules:
     - if: '$CI_PIPELINE_SOURCE == "schedule"'
-      when: "always"
+
     - when: "never"
 
 default:
-- 
GitLab