feat(conventional_commits): do not run on master branch

!70 fixes #40
This commit is contained in:
2023-11-06 17:36:55 +09:30
parent 52f4ebda54
commit 3918686e48

View File

@ -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