From d177585f80b33b0ab5dba5a83f65a2d58f4fb2c1 Mon Sep 17 00:00:00 2001 From: Romain Deville <code@romaindeville.fr> Date: Mon, 19 Apr 2021 18:09:45 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=9C=8F=20Fix=20typos=20?= =?UTF-8?q?in=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index be38de5..69a414c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,10 +15,7 @@ workflow: rules: # Do not run CI when commit title have # WIP, NO-CI or 🚧 (gitmoji for "work in progress", aka :construction:) - - if: | - $CI_COMMIT_TITLE =~ /.*WIP.*/ || - $CI_COMMIT_TITLE =~ /.*NO-CI.*/ || - $CI_COMMIT_TITLE =~ /.*🚧.*/ + - if: $CI_COMMIT_TITLE =~ /.*(WIP|NO-CI|🚧|:construction:).*/ when: never # Run the CI otherwise (depending on `only/except` key per jobs) - when: always -- GitLab