feat(commit_footer_refs): only run on changes

!50
This commit is contained in:
2023-06-03 14:22:13 +09:30
parent 097725c1be
commit f3256c5858

View File

@ -112,9 +112,14 @@ commit footer refs:
- if: # condition_not_master_or_dev_push
$CI_COMMIT_BRANCH != "master" &&
$CI_COMMIT_BRANCH != "development" &&
$CI_PIPELINE_SOURCE == "push"
$CI_PIPELINE_SOURCE == "push" &&
$CI_COMMIT_TAG == null
exists:
- .cz.yaml
changes:
paths:
- "**/**"
compare_to: development
when: always
- when: never