From 3918686e483f6fabb6c487be6f2d7105da08d11a Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 6 Nov 2023 17:36:55 +0930 Subject: [PATCH] feat(conventional_commits): do not run on master branch !70 fixes #40 --- conventional_commits/.gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conventional_commits/.gitlab-ci.yml b/conventional_commits/.gitlab-ci.yml index 8d8b838..77fd2dc 100644 --- a/conventional_commits/.gitlab-ci.yml +++ b/conventional_commits/.gitlab-ci.yml @@ -50,7 +50,8 @@ - if: # condition_any_branch_push $CI_COMMIT_BRANCH != null && $CI_COMMIT_TAG == null && - $CI_PIPELINE_SOURCE == "push" + $CI_PIPELINE_SOURCE == "push" && + $CI_COMMIT_BRANCH != 'master' exists: - .cz.yaml when: always